12 lines
243 B
Python
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
|