Files
notifications-api/run_celery.py

12 lines
274 B
Python
Raw Normal View History

2016-02-09 13:31:45 +00:00
#!/usr/bin/env python
from flask import Flask
# notify_celery is referenced from manifest_delivery_base.yml, and cannot be removed
from app import notify_celery, create_app # noqa
2016-02-17 11:25:57 +00:00
application = Flask('delivery')
create_app(application)
2016-02-09 13:31:45 +00:00
application.app_context().push()