8 lines
323 B
Python
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') |