mirror of
https://github.com/langgenius/dify.git
synced 2026-01-14 06:07:33 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: -LAN- <laipz8200@outlook.com>
11 lines
304 B
Bash
Executable File
11 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
|
|
cd "$SCRIPT_DIR/.."
|
|
|
|
uv --directory api run \
|
|
celery -A app.celery worker \
|
|
-P gevent -c 1 --loglevel INFO -Q dataset,priority_dataset,generation,mail,ops_trace,app_deletion,plugin,workflow_storage,conversation,priority_pipeline,pipeline
|