-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #52 from peopledoc/improve-quickstart
Improving the quick start documentation
- Loading branch information
Showing
6 changed files
with
283 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# TODO This file will list advanced options for septentrion usage (eg using flags or env variables instead of a .ini file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Configure database connection settings | ||
-------------------------------------- | ||
|
||
# TODO expand documentation on database connection | ||
|
||
Ensure that your database connection settings are correctly configured. | ||
|
||
- Either your environment variables `PGHOST`, `PGPORT` and `PGUSER` are properly set. | ||
- Or you can set the environment variables `SEPTENTRION_HOST`, `SEPTENTRION_PORT`, `SEPTENTRION_USERNAME`. | ||
- configuration file `septentrion.ini` | ||
- If you don't want to use environment variables, you can use the `--host`, `--port` or `--username` options | ||
when running the migration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
File naming convention | ||
---------------------- | ||
|
||
# TODO explain the file naming convention | ||
# The following extract was inspired by the DBA documentation. | ||
|
||
We recommend to use the following naming convention for migration files: | ||
|
||
.. code-block:: console | ||
[VERSION]-[MIGRATION]-[ORDER]-[TYPE].sql | ||
- version : the release version | ||
- migration : a free name for the migration | ||
- order : a number used to order the files inside the migration | ||
- type : ddl or dml, ddl if the file contains schema migration, dml if the file contains data migration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# TODO This file will contain help with the most common issues. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters