소스 검색

chore: make the Celery command more noticeable (#5203)

doufa 9 달 전
부모
커밋
f87f11e92c
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5 3
      api/README.md

+ 5 - 3
api/README.md

@@ -67,9 +67,11 @@
    flask run --host 0.0.0.0 --port=5001 --debug
    ```
 8. Setup your application by visiting http://localhost:5001/console/api/setup or other apis...
-9. If you need to debug local async processing, please start the worker service by running 
-`celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail`.
-The started celery app handles the async tasks, e.g. dataset importing and documents indexing.
+9. If you need to debug local async processing, please start the worker service.
+   ```bash
+   celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail
+   ```
+   The started celery app handles the async tasks, e.g. dataset importing and documents indexing.
 
 
 ## Testing