mpeltriaux
d6d15185ea
* adds celery to project * adds celery background task for updating parcels * adds parcel calculation to creating of new geometries as well * tests outstanding!!!
6 lines
174 B
Python
6 lines
174 B
Python
# This will make sure the app is always imported when
|
|
# Django starts so that shared_task will use this app.
|
|
from .celery import app as celery_app
|
|
|
|
__all__ = ('celery_app',)
|