diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2017-10-31 17:12:38 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2017-10-31 17:12:38 -0400 |
| commit | 11e4b14a65133960cefafca52d8aaf6d7b2f4950 (patch) | |
| tree | ec083c7fddb7aa75ccfd0d4680dc1809ba160501 /app/config.yml | |
| parent | 30f1cbb8368b133cf46f613e896bf012ec4da51c (diff) | |
| download | dispatch-tracker-11e4b14a65133960cefafca52d8aaf6d7b2f4950.tar.gz dispatch-tracker-11e4b14a65133960cefafca52d8aaf6d7b2f4950.tar.xz | |
Changes to make the app work under uwsgi
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 index a60a66e..80a9d6e 100644 --- a/app/config.yml +++ b/app/config.yml @@ -7,7 +7,20 @@ db_default: PASSWORD: HOST: 127.0.0.1 PORT: 5432 +# MySQL Example +# db_default: +# ENGINE: django.db.backends.mysql +# NAME: dispatch_test +# USER: dispatch +# PASSWORD: ahB2lee5 +# HOST: 127.0.0.1 +# PORT: 3306 # Sqlite example. Full path is recommended # db_default: # ENGINE: django.db.backends.sqlite3 # NAME: /home/mitch/scm/dispatch-tracker/app/db.sqlite3 + +allowed_hosts: + - example.com + +static_root: '/full/path/to/static/root' |
