Haleemur Ali
05/13/2022, 2:50 AMZanie
05/13/2022, 3:58 AMprefect run --name "your-flow-name"
prefect run --help
menu
Run registered flow with the backend by flow name and watch execution
$ prefect run -n "hello-world" --watch
Run registered flow with the backend with custom labels
$ prefect run -n "hello-world" --label example --label hello
Run registered flow with the backend by flow id and exit after creation
$ prefect run -i "9a1cd70c-37d7-4cd4-ab91-d41c2700300d"
Run registered flow and pipe flow run id to another program
$ prefect run -n "hello-world" --quiet | post_run.sh
Run registered flow and execute locally without an agent
$ prefect run -n "hello-world" --execute
Haleemur Ali
05/13/2022, 4:33 AM