mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-12 16:22:17 -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,
|
|
}
|