Files
notifications-admin/wsgi.py
Martyn Inglis 4bb25dfdb1 Pep8 appeased
2015-12-03 09:40:28 +00:00

8 lines
180 B
Python

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