aboutsummaryrefslogtreecommitdiff
path: root/gn3/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/settings.py')
-rw-r--r--gn3/settings.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/gn3/settings.py b/gn3/settings.py
index ddff766..f5988bb 100644
--- a/gn3/settings.py
+++ b/gn3/settings.py
@@ -3,11 +3,10 @@
import tempfile
import os
-APP_DEFAULTS = {
- "BCRYPT_SALT": "$2b$12$mxLvu9XRLlIaaSeDxt8Sle", # Change this!
- "GEMMA_WRAPPER_CMD": os.environ.get("GEMMA_WRAPPER", "gemma-wrapper"),
- "TMPDIR": os.environ.get("TMPDIR", tempfile.gettempdir()),
- "GENODIR": "",
- "REDIS_URI": "redis://localhost:6379/0",
- "REDIS_JOB_QUEUE": "GN3::job-queue"
-}
+BCRYPT_SALT = "$2b$12$mxLvu9XRLlIaaSeDxt8Sle" # Change this!
+DATA_DIR = ""
+GEMMA_WRAPPER_CMD = os.environ.get("GEMMA_WRAPPER", "gemma-wrapper")
+GENODIR = ""
+REDIS_URI = "redis://localhost:6379/0"
+REDIS_JOB_QUEUE = "GN3::job-queue"
+TMPDIR = os.environ.get("TMPDIR", tempfile.gettempdir())