Is there a way to run a prefect flow from command ...
# ask-community
j
Is there a way to run a prefect flow from command line and be able to halt at a breakpoint during the flow?
1
r
cant you just run it in vscode debugger
z
You can just
python your_file.py
with a
breakpoint()
in it
j
Got this to work by removing the calls to
submit()
so that the tasks run sequentially.