Added AWS files to

- upgrade database
- use credstash for secret overrides
This commit is contained in:
Martyn Inglis
2016-01-19 14:50:42 +00:00
parent 6141a11e7f
commit 742a567036
5 changed files with 31 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
from app import create_app
from credstash import getAllSecrets
application = create_app('live')
secrets = getAllSecrets(region="eu-west-1")
application = create_app('live', secrets)
if __name__ == "__main__":
application.run()