aboutsummaryrefslogtreecommitdiff
path: root/etc/default_config.py
blob: 5bafd1a34d42877c820b86c048b5032a12d79006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
The default configuration file. The values here should be overridden in the
actual configuration file used for the production and staging systems.
"""

import os

LOG_LEVEL = os.getenv("LOG_LEVEL", "WARNING")
SECRET_KEY = b"<Please! Please! Please! Change This!>"
UPLOAD_FOLDER = "/tmp/qc_app_files"
REDIS_URL = "redis://"
JOBS_TTL_SECONDS = 1209600 # 14 days
GN3_URL="http://localhost:8080"
SQL_URI = os.getenv(
    "SQL_URI", "mysql://gn2:mysql_password@localhost/db_webqtl_s")