10 lines
253 B
Python
10 lines
253 B
Python
"""Bootstrap the application for Celery."""
|
|
from os import environ
|
|
|
|
from magic_app.app import celery, create_app # noqa
|
|
from magic_app.config import CONFIG
|
|
|
|
config = CONFIG[environ["FLASK_ENV"]]
|
|
app = create_app(config=config)
|
|
app.app_context().push()
|