wsgi scripts always in live mode

This commit is contained in:
Martyn Inglis
2016-01-11 15:24:41 +00:00
parent e21fbbbb18
commit 7f9e73b009

View File

@@ -1,7 +1,6 @@
from app import create_app
import os
application = create_app(os.getenv('NOTIFICATIONS_API_ENVIRONMENT') or 'development')
application = create_app('live')
if __name__ == "__main__":
application.run()