KTVManager_Backend/config.py.sample
2025-07-14 13:42:58 +01:00

11 lines
176 B
Plaintext

# config.py.sample
class Config:
DEBUG = False
SECRET_KEY = 'a_secret_key'
class DevelopmentConfig(Config):
DEBUG = True
class ProductionConfig(Config):
pass