From 3cd04375b9a0d71228cf20e12beba85c4b6418a9 Mon Sep 17 00:00:00 2001 From: Peter Vlasveld Date: Sun, 7 Jan 2024 11:12:55 -0500 Subject: [PATCH] vault backup: 2024-01-07 11:12:55 --- 2023_simplifying_local_prefect_2_testing.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/2023_simplifying_local_prefect_2_testing.md b/2023_simplifying_local_prefect_2_testing.md index bdf2a45..6ab6460 100644 --- a/2023_simplifying_local_prefect_2_testing.md +++ b/2023_simplifying_local_prefect_2_testing.md @@ -81,7 +81,9 @@ echo creating worker pool prefect work-pool create -t process test-process-pool 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.