Files
notifications-api/wsgi.py

10 lines
205 B
Python
Raw Normal View History

2015-12-15 16:37:54 +00:00
from app import create_app
from credstash import getAllSecrets
2015-12-15 16:37:54 +00:00
secrets = getAllSecrets(region="eu-west-1")
application = create_app('live', secrets)
2015-12-15 16:37:54 +00:00
if __name__ == "__main__":
application.run()