diff options
author | Frederick Muriuki Muriithi | 2024-03-15 04:14:47 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-03-15 04:14:47 +0300 |
commit | 13bc6684cc2f90b1fdac306a2ce9a8849911b43f (patch) | |
tree | 2c61bd605fc5252e3eb048a4cafb3aaea341efd4 /etc/default_config.py | |
parent | 3de1817504caf18931c4396bf36a6df6fc9f01ea (diff) | |
download | gn-uploader-13bc6684cc2f90b1fdac306a2ce9a8849911b43f.tar.gz |
Move defaults settings into qc_app module.
Diffstat (limited to 'etc/default_config.py')
-rw-r--r-- | etc/default_config.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/default_config.py b/etc/default_config.py deleted file mode 100644 index 7a9da0f..0000000 --- a/etc/default_config.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -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 -GNQC_REDIS_PREFIX="GNQC" -SQL_URI = "" |