diff options
author | BonfaceKilz | 2021-03-15 14:44:07 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-03-15 14:44:07 +0300 |
commit | 9ab0e87ab7f016cea5b12f9dd96af00b561a8493 (patch) | |
tree | 37ab05066a181bd00157f1638b63e16f62afe9e6 /gn3/settings.py | |
parent | 236ca06dc4c84baecb7b090b8724db997a5d988a (diff) | |
download | genenetwork3-9ab0e87ab7f016cea5b12f9dd96af00b561a8493.tar.gz |
Delete redundant gn3/config.py
All default confs should go to one place: gn3/setting.py
* gn3/app.py: Delete get_config. Apply pep-8 formatting.
* gn3/config.py: Delete it. Move conf options to...
* gn3/settings.py: ... here.
Diffstat (limited to 'gn3/settings.py')
-rw-r--r-- | gn3/settings.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index f5988bb..c09e6e0 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -10,3 +10,8 @@ GENODIR = "" REDIS_URI = "redis://localhost:6379/0" REDIS_JOB_QUEUE = "GN3::job-queue" TMPDIR = os.environ.get("TMPDIR", tempfile.gettempdir()) + +# SQL confs +SQLALCHEMY_DATABASE_URI = "mysql://kabui:1234@localhost/test" +SECRET_KEY = "password" +SQLALCHEMY_TRACK_MODIFICATIONS = False |