Added wsgi file

This commit is contained in:
Martyn Inglis
2015-12-15 16:37:54 +00:00
parent 8b76fbd382
commit 219c8d252e

7
wsgi.py Normal file
View File

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