Merge pull request #3031 from pjhoberman/patch-1

Adding local celery instructions to developing-locally
This commit is contained in:
Bruno Alla 2021-01-31 18:03:51 +00:00 committed by GitHub
commit 3081a33d3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,6 +143,10 @@ when developing locally. If you have the appropriate setup on your local machine
in ``config/settings/local.py``::
CELERY_TASK_ALWAYS_EAGER = False
To run Celery locally, make sure redis-server is installed (instructions are available at https://redis.io/topics/quickstart), run the server in one terminal with `redis-server`, and then start celery in another terminal with the following command::
celery -A config.celery_app worker --loglevel=info
Sass Compilation & Live Reloading