Files
notifications-api/config.py
Martyn Inglis e25ca0e434 Basic commit to add get pages showing
- bootstrap script
- run script
- couple of views
- basic config
2015-12-10 10:56:59 +00:00

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,
}