KTVManager_Backend/config.py.sample

11 lines
176 B
Plaintext
Raw Permalink Normal View History

2025-07-14 13:42:58 +01:00
# config.py.sample
class Config:
DEBUG = False
SECRET_KEY = 'a_secret_key'
class DevelopmentConfig(Config):
DEBUG = True
class ProductionConfig(Config):
pass