mirror of
https://github.com/langgenius/dify.git
synced 2025-08-15 04:37:10 +00:00

Co-authored-by: liangxin <liangxin@shein.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: liangxin <xinlmain@gmail.com>
12 lines
250 B
Bash
Executable File
12 lines
250 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,generation,mail,ops_trace,app_deletion,plugin,workflow_storage
|