Debugging

This commit is contained in:
Martyn Inglis
2016-07-05 16:07:00 +01:00
parent 44dffc9d22
commit 5635235269

10
db.py
View File

@@ -7,6 +7,16 @@ import os
# on aws get secrets and export to env
os.environ.update(getAllSecrets(region="eu-west-1"))
print("DOING SETUP")
print("\n" * 10)
print("SECRETS")
print("\n" * 10)
print(getAllSecrets(region="eu-west-1"))
print("\n" * 10)
print("ENV")
print("\n" * 10)
print(os.environ)
application = create_app()
manager = Manager(application)