mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-17 02:32:32 -05:00
10 lines
205 B
Python
10 lines
205 B
Python
from app import create_app
|
|
from credstash import getAllSecrets
|
|
|
|
secrets = getAllSecrets(region="eu-west-1")
|
|
|
|
application = create_app('live', secrets)
|
|
|
|
if __name__ == "__main__":
|
|
application.run()
|