From 7b3dc9d36de1db28a6f36b03de85cf7f527231cc Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 20 Apr 2022 13:44:26 +0300 Subject: Add scaffolding for web app Add a basic scaffolding for the web interface to the quality-control application. --- etc/default_config.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 etc/default_config.py (limited to 'etc') diff --git a/etc/default_config.py b/etc/default_config.py new file mode 100644 index 0000000..80f9d59 --- /dev/null +++ b/etc/default_config.py @@ -0,0 +1,9 @@ +""" +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"" -- cgit v1.2.3