aboutsummaryrefslogtreecommitdiff
path: root/gn3/settings.py
blob: ddff7661e81cd8489e460ed3d9a0a6ea19297473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""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",
    "REDIS_JOB_QUEUE": "GN3::job-queue"
}