mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-12 16:14:56 -05:00
21 lines
255 B
Python
21 lines
255 B
Python
|
|
|
||
|
|
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
|
||
|
|
}
|