8 lines
228 B
Python
8 lines
228 B
Python
"""Application configuration via environment variables."""
|
|
|
|
import os
|
|
|
|
|
|
DB_PATH: str = os.getenv("TEN31_DB_PATH", "/data/ten31portal/portal.db")
|
|
SESSION_SECRET: str = os.getenv("TEN31_SESSION_SECRET", "change-me-in-production")
|