Name
sqitch-init - Create a new Sqitch project
Synopsis
sqitch [options] init
Description
This command creates an new Sqitch project -- basically a sqitch.conf file and a sql directory with deploy, revert, and test subdirectories.
Running sqitch init in an existing repository is safe. It will not overwrite things that are already there.
Configuration
The most important thing sqitch init
does is create the project plan file, sqitch.conf. While the init
command has no options of its own, it relies on several of the options to sqitch
to determine what to write to this file:
--uri
-
Sets the
core.uri
configuration variable. --plan-file
-
Sets the
core.plan_file
configuration variable. --plan-file
-
Sets the
core.plan_file
configuration variable. --top-dir
-
Determines the top-level directory to use when writing the plan and the
core.deploy_dir
,core.revert_dir
, andcore.test_dir
variables -- unless they are overridden by their more-specific options, detailed below. --deploy-dir
-
Sets the
core.deploy_dir
configuration variable. --revert-dir
-
Sets the
core.revert_dir
configuration variable. --test-dir
-
Sets the
core.test_dir
configuration variable. --extension
-
Sets the
core.extension
configuration variable. --engine
-
Sets the
core.engine
configuration variable.
As a general rule, you likely won't need any of them except for --engine
, since your project can have only one engine at a time, and specifying it on the command-line forever after would be annoying.
These variables will only be written if their corresponding options are specified. Otherwise, they get written as comments with user or system configuration settings, or, failing any values from those locations, from their default values. If no defaults are specified, they will still be written, commented out, with a bar =
and no value. This allows one to know what sorts of things are available to edit.
Relatedly, the engine-specific sqitch options will also be used to write variables, as follows:
--client
-
Used to set
core.pg.client
,core.sqlite.client
, orcore.mysql.client
. --db-name
-
Used to set
core.pg.db_name
,core.sqlite.db_name
, orcore.mysql.db_name
. --username
-
Used to set
core.pg.username
, orcore.mysql.username
. --host
-
Used to set
core.pg.host
, orcore.mysql.host
. --port
-
Used to set
core.pg.port
, orcore.mysql.port
.
Again, if these are no specified, the engine-specific options will still be written out, but as comments with values either from user or system configuration, or default values.
Examples
Start a new Sqitch project using the SQLite engine, setting the default database file to /var/db/widgets.db
sqitch --engine --db-name /var/db/widgets.db sqlite init
Start a new Sqitch project using the PostgreSQL engine, with the default database name "widgets", the default user name "postgres", and a version-specific client:
sqitch --engine pg \
--db-name widgets \
--username postgres \
--client /opt/pgsql-9.1/bin/psql init
Sqitch
Part of the sqitch suite.