blob: 54ab60fbd97dd9d2ab493c8dc51536d080d7eee8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
"""Configuration settings for this project"""
import tempfile
import os
APP_DEFAULTS = {
"GEMMA_WRAPPER_CMD": os.environ.get("GEMMA_WRAPPER", "gemma-wrapper"),
"TMPDIR": os.environ.get("TMPDIR", tempfile.gettempdir()),
"REDIS_URI": "redis://localhost:6379/0"
}
|