aboutsummaryrefslogtreecommitdiff
path: root/app/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/config.py')
-rw-r--r--app/config.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/config.py b/app/config.py
new file mode 100644
index 0000000..aeb2840
--- /dev/null
+++ b/app/config.py
@@ -0,0 +1,4 @@
+from os import environ
+
+class Config:
+ SECRET_KEY = environ.get("SECRET_KEY") or "you-will-never-guess" \ No newline at end of file