KTVManager_UI/config.py.sample

12 lines
225 B
Plaintext
Raw Normal View History

2025-05-09 16:31:14 +01:00
# config.py
class Config:
DEBUG = False
BASE_URL = '' # Set your base URL here
class DevelopmentConfig(Config):
DEBUG = True
class ProductionConfig(Config):
BASE_URL = '' # Production base URL