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.

add tangled → github fallback for git_clone pull step

uses run_shell_script to try tangled.sh first, falls back to
github mirror if tangled git hosting is unavailable.

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

zzstoatzz 0193e0b7 756cae34

+6 -3
+6 -3
prefect.yaml
··· 1 1 name: my-prefect-server 2 2 3 3 pull: 4 - - prefect.deployments.steps.git_clone: 5 - repository: https://github.com/zzstoatzz/my-prefect-server.git 6 - branch: main 4 + - prefect.deployments.steps.run_shell_script: 5 + script: | 6 + git clone --depth 1 --branch main https://tangled.sh/zzstoatzz.io/my-prefect-server.git my-prefect-server \ 7 + || git clone --depth 1 --branch main https://github.com/zzstoatzz/my-prefect-server.git my-prefect-server 8 + - prefect.deployments.steps.set_working_directory: 9 + directory: my-prefect-server 7 10 8 11 deployments: 9 12 - name: diagnostics