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