You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
346 B
Python
17 lines
346 B
Python
class Config(object):
|
|
# SERVER_NAME = 'hub.xpub.nl/watermark'
|
|
DEBUG = True
|
|
TESTING = False
|
|
SESSION_COOKIE_SECURE = True
|
|
|
|
class ProductionConfig(Config):
|
|
pass
|
|
|
|
class DevelopmentConfig(Config):
|
|
DEBUG = True
|
|
SESSION_COOKIE_SECURE = False
|
|
|
|
class TestingConfig(Config):
|
|
TESTING = True
|
|
SESSION_COOKIE_SECURE = False
|