Added preview and staging config blocks

This commit is contained in:
Martyn Inglis
2016-02-09 13:56:11 +00:00
parent c2424d6509
commit 66763a061c

View File

@@ -36,12 +36,22 @@ class Test(Development):
SQLALCHEMY_DATABASE_URI = 'postgresql://localhost/test_notification_api'
class Preview(Config):
pass
class Staging(Config):
pass
class Live(Config):
pass
configs = {
'development': Development,
'preview': Preview,
'staging': Staging,
'test': Test,
'live': Live,
}