mkcontrol-app/config.py
2026-02-16 14:06:12 +01:00

8 lines
323 B
Python

# config.py
import os
class Config:
SECRET_KEY = os.environ.get('SECRET_KEY') or 'dev-key-change-me'
CONFIG_DIR = os.path.join(os.path.dirname(__file__), '..', 'configs')
LOG_DIR = os.path.join(os.path.dirname(__file__), '..', 'logs')
SOUNDS_DIR = os.path.join(os.path.dirname(__file__), '..', 'sounds')