mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-13 08:42:21 -05:00
22 lines
240 B
Python
22 lines
240 B
Python
|
|
|
||
|
|
class Config(object):
|
||
|
|
DEBUG = False
|
||
|
|
|
||
|
|
|
||
|
|
class Development(Config):
|
||
|
|
DEBUG = True
|
||
|
|
|
||
|
|
|
||
|
|
class Test(Config):
|
||
|
|
DEBUG = True
|
||
|
|
|
||
|
|
|
||
|
|
class Live(Config):
|
||
|
|
pass
|
||
|
|
|
||
|
|
configs = {
|
||
|
|
'development': Development,
|
||
|
|
'test': Test,
|
||
|
|
'live': Live,
|
||
|
|
}
|