We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88fa784 commit 02c76a9Copy full SHA for 02c76a9
.github/workflows/release_nightly.yml
@@ -102,8 +102,8 @@ jobs:
102
# TODO: Unsure why the whl is not built in src/backend/base/dist
103
mkdir src/backend/base/dist
104
mv dist/*.whl src/backend/base/dist/
105
- uv pip install src/backend/base/dist/*.whl
106
- uv run python -m langflow run --host 127.0.0.1 --port 7860 --backend-only &
+ python -m pip install src/backend/base/dist/*.whl
+ python -m langflow run --host 127.0.0.1 --port 7860 --backend-only &
107
SERVER_PID=$!
108
# Wait for the server to start
109
timeout 120 bash -c 'until curl -f http://127.0.0.1:7860/api/v1/auto_login; do sleep 2; done' || (echo "Server did not start in time" && kill $SERVER_PID && exit 1)
0 commit comments