I have created sample python code with flow and ta...
# prefect-getting-started
m
I have created sample python code with flow and task in VS code editor. Also I have started server using "prefect orion start" using CLI in windows. I am not seeing the running flow in the prefect UI (http://127.0.0.1:4200/). Could any one help me on this? Thanks in Advance.
1
r
Hi Mathuraju! When you start the server, you should see a message like:
Copy code
___ ___ ___ ___ ___ ___ _____    ___  ___ ___ ___  _  _
| _ \ _ \ __| __| __/ __|_   _|  / _ \| _ \_ _/ _ \| \| |
|  _/   / _|| _|| _| (__  | |   | (_) |   /| | (_) | .` |
|_| |_|_\___|_| |___\___| |_|    \___/|_|_\___\___/|_|\_|

Configure Prefect to communicate with the server with:

    prefect config set PREFECT_API_URL=<http://127.0.0.1:4200/api>
Did you run the
prefect config set
command? If not, that may be why you're not seeing your flow run in the UI (assuming you're trying to run flows on the same machine you're running the Prefect server.)
m
Thanks @Ryan Peden. It's working now :)
r
You're welcome! 😄