diff options
Diffstat (limited to 'gn3/settings.py')
-rw-r--r-- | gn3/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/settings.py b/gn3/settings.py index d9d4f90..478a041 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -12,7 +12,7 @@ REDIS_JOB_QUEUE = "GN3::job-queue" TMPDIR = os.environ.get("TMPDIR", tempfile.gettempdir()) # SQL confs -SQLALCHEMY_DATABASE_URI = "mysql://kabui:1234@localhost/test" +SQL_URI = os.environ.get("SQL_URI", "mysql://kabui:1234@localhost/db_webqtl") SECRET_KEY = "password" SQLALCHEMY_TRACK_MODIFICATIONS = False # gn2 results only used in fetching dataset info |