Files
notifications-admin/config.py

21 lines
255 B
Python
Raw Normal View History

2015-11-24 09:40:14 +00:00
class Config(object):
DEBUG = False
ASSETS_DEBUG = False
cache = False
manifest = True
class Development(Config):
DEBUG = True
class Test(Config):
DEBUG = False
configs = {
'development': Development,
'TEST': Test
}