vault backup: 2024-01-07 11:12:55

This commit is contained in:
Peter Vlasveld 2024-01-07 11:12:55 -05:00
parent 3b66b0f209
commit 3cd04375b9

View File

@ -81,7 +81,9 @@ echo creating worker pool
prefect work-pool create -t process test-process-pool prefect work-pool create -t process test-process-pool
echo deploying test flow echo deploying test flow
prefect --no-prompt deploy --name "return a df" --pool test-process-pool /root/flows/test_flows.py:return_a_df prefect --no-prompt deploy \
--name "return a df" \
--pool test-process-pool /root/flows/test_flows.py:return_a_df
``` ```
The `prefect deploy` command is pretty nice. It will infer most stuff, so you don't have to explicitly define too much, especially for a basic setup like this. The `prefect deploy` command is pretty nice. It will infer most stuff, so you don't have to explicitly define too much, especially for a basic setup like this.