Files
notifications-api/run_celery.py
2016-02-17 11:25:57 +00:00

13 lines
314 B
Python

#!/usr/bin/env python
from app import notify_celery, create_app
from credstash import getAllSecrets
import os
# on aws get secrets and export to env
secrets = getAllSecrets(region="eu-west-1")
for key, val in secrets.items():
os.environ[key] = val
application = create_app()
application.app_context().push()