blob: 1ffd60b0706796064ed68f1b756be059083063e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""Configuration settings for this project"""
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()),
"REDIS_URI": "redis://localhost:6379/0"
}
|