diff options
author | Frederick Muriuki Muriithi | 2024-10-24 15:48:16 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-10-24 15:48:44 -0500 |
commit | 1cfdcf000e1ae95d54ca90fbbbafa6ff94090d38 (patch) | |
tree | ab91b780ec1aa035c827b07fc7e1f555cdded575 /uploader/default_settings.py | |
parent | 9231dd51f3b32c5cf9310fba18b024a739f25b4b (diff) | |
download | gn-uploader-1cfdcf000e1ae95d54ca90fbbbafa6ff94090d38.tar.gz |
Don't compute settings in configuration file.
Diffstat (limited to 'uploader/default_settings.py')
-rw-r--r-- | uploader/default_settings.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/uploader/default_settings.py b/uploader/default_settings.py index 26fe665..3f096af 100644 --- a/uploader/default_settings.py +++ b/uploader/default_settings.py @@ -2,10 +2,7 @@ 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") +LOG_LEVEL = "WARNING" SECRET_KEY = b"<Please! Please! Please! Change This!>" UPLOAD_FOLDER = "/tmp/qc_app_files" REDIS_URL = "redis://" |