From 2f3317bad83ca90f613e2617ffa3b9459c0c65ed Mon Sep 17 00:00:00 2001 From: Isaac To Date: Tue, 10 Dec 2024 14:01:48 -0800 Subject: [PATCH] doc: update instruction to natively(locally) run Celery service Update it so that it corresponds exactly as the celery service defined in `docker-compose.override.yml` --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 3484b8c9d..e3b939594 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -56,7 +56,7 @@ but allows developers to run Python code on their native system. 2. `./manage.py runserver` 3. Run in a separate terminal: 1. `source ./dev/export-env.sh` - 2. `celery --app dandiapi.celery worker --loglevel INFO --without-heartbeat -Q celery,calculate_sha256,ingest_zarr_archive -B` + 2. `celery --app dandiapi.celery worker --loglevel INFO --without-heartbeat -Q celery,calculate_sha256,ingest_zarr_archive,manifest-worker -B` 4. When finished, run `docker compose stop` ## Remap Service Ports (optional)