Sha256: a056d0641234724aa6fa82c0bcf2ae042c5ee21582890150d51e689cd318a267

Contents?: true

Size: 1.09 KB

Versions: 1

Compression:

Stored size: 1.09 KB

Contents

# Path to this kit's root directory.
# Absolute or relative to this config file.
# If not specified, defaults to the folder that holds this config file.
#
:kits_path:
#
# Database backend to use. Available options:
#   :sqlite3
#
:db_backend: :sqlite3
#
# Path to the files to save each sqlite3 database (since only sqlite3 is supported).
# Absolute or relative to this config file.
#
:db_config:
 :info: "info.db"
 :actions: "actions.db"
#
# Tables and columns for each database.
#
# Each table in the :info: database must be of the form
#   :table_name: [ :rowid, :name, :column_name_1, :column_name_2 ]
# where :rowid and :name are required columns.
#
:info:
  :bits: [ :rowid, :name, :project, :root, :commit, :commit_time ]
  :projects: [ :rowid, :name, :git ]
#
# Each table in the :actions: database must be of the form
#   :table_name: [ :rowid, :status, :column_name_1, :column_name_2 ]
# where :rowid and :status are required columns.
#
:actions:
  :clones: [ :rowid, :status, :src, :site ]
  :upgrades: [ :rowid, :status, :site, :component, :file ]
  :commits: [ :rowid, :status, :site, :requested_commit ]

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kit-0.0.5 kits/my_kit/config.yml