Files
notifications-api/wsgi.py
Martyn Inglis 219c8d252e Added wsgi file
2015-12-15 16:37:54 +00:00

8 lines
178 B
Python

from app import create_app
import os
application = create_app(os.getenv('NOTIFICATIONS_API_ENVIRONMENT') or 'development')
if __name__ == "__main__":
application.run()