From 5635235269393f784d88705bb488dca450cc4bf5 Mon Sep 17 00:00:00 2001 From: Martyn Inglis Date: Tue, 5 Jul 2016 16:07:00 +0100 Subject: [PATCH] Debugging --- db.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/db.py b/db.py index 7ded5ba1e..b34dbddad 100644 --- a/db.py +++ b/db.py @@ -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)