Files
notifications-api/run_celery.py
Martyn Inglis 223cb8c2dd Made SMS messages go through celery
- twilio client pulled in from delivery app
- made method to perform task
2016-02-15 16:01:14 +00:00

7 lines
180 B
Python

#!/usr/bin/env python
import os
from app import celery, create_app
application = create_app(os.getenv('NOTIFY_API_ENVIRONMENT') or 'development')
application.app_context().push()