Files
notifications-admin/wsgi.py
2016-07-29 10:20:27 +01:00

13 lines
257 B
Python

from credstash import getAllSecrets
import os
# on aws get secrets and export to env
os.environ.update(getAllSecrets(region="eu-west-1"))
from app import create_app # noqa
application = create_app()
if __name__ == "__main__":
application.run()