my prefect server setup prefect-metrics.waow.tech
python orchestration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix pull step: use pip to update uv (installed via pip in worker image)

uv self update fails because uv was installed through pip in the
prefect worker image, not via the standalone installer.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz ca930fe1 72f510c7

+1 -1
+1 -1
prefect.yaml
··· 3 3 pull: 4 4 - prefect.deployments.steps.run_shell_script: 5 5 script: | 6 - bash -c "rm -rf my-prefect-server && (git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server) && cd my-prefect-server && uv self update && uv python install 3.14 && uv sync" 6 + bash -c "rm -rf my-prefect-server && (git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server) && cd my-prefect-server && pip install -q -U uv && uv python install 3.14 && uv sync" 7 7 - prefect.deployments.steps.set_working_directory: 8 8 directory: my-prefect-server 9 9