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