blob: d8d5986485628ce26d3b4857c4c8eb7e01e0ef01 (
plain)
1
2
3
4
5
6
7
8
9
|
"""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())
}
|