diff options
| author | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-10 11:28:03 -0400 |
|---|---|---|
| committer | Mitch Riedstra <Mitch@riedstra.us> | 2017-10-10 11:28:03 -0400 |
| commit | c35399d201d8f64b54d00125cb658082dfee094b (patch) | |
| tree | 10f613d1c2363064296044bfddc88ca47688b17c /app/config.yml | |
| parent | 6919001bc23b4a494b338b0027984efb3d264305 (diff) | |
| download | dispatch-tracker-c35399d201d8f64b54d00125cb658082dfee094b.tar.gz dispatch-tracker-c35399d201d8f64b54d00125cb658082dfee094b.tar.xz | |
Read database configuration from 'config.yml' and add example configuration
Diffstat (limited to 'app/config.yml')
| -rw-r--r-- | app/config.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/config.yml b/app/config.yml new file mode 100644 index 0000000..a60a66e --- /dev/null +++ b/app/config.yml @@ -0,0 +1,13 @@ +--- +# Postgres Example +db_default: + ENGINE: django.db.backends.postgresql + NAME: dispatch + USER: postgres + PASSWORD: + HOST: 127.0.0.1 + PORT: 5432 +# Sqlite example. Full path is recommended +# db_default: +# ENGINE: django.db.backends.sqlite3 +# NAME: /home/mitch/scm/dispatch-tracker/app/db.sqlite3 |
