mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 06:32:11 -05:00
7 lines
180 B
Python
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()
|