8 lines
182 B
Python
8 lines
182 B
Python
# 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' |