blob: 6a67c0a9b6b4f21038a62d08453b39c98f3d34ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""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()),
"GENODIR": "",
"REDIS_URI": "redis://localhost:6379/0"
}
|