flask-website/flask/config.py
2025-05-15 21:16:00 +02:00

12 lines
243 B
Python

class Config:
DEBUG = False
TESTING = False
class ProductionConfig(Config):
SITE_URL = 'https://floritiv.de'
TEMPLATES_AUTO_RELOAD = True
class DevelopmentConfig(Config):
SITE_URL = 'https://floritiv.de'
DEBUG = True