Nate
08/13/2025, 6:39 PMMarvin
08/13/2025, 6:39 PMMarvin
08/13/2025, 6:40 PMprefect ui
command.
To start the local UI, run:
prefect server start
That starts the API + UI and prints the URL, which by default is:
- http://127.0.0.1:4200
To stop it:
prefect server stop
(or Ctrl+C if it’s running in the foreground)
There isn’t a built-in flag to auto-open your browser; if you want that:
- macOS: open <http://127.0.0.1:4200>
- Linux: xdg-open <http://127.0.0.1:4200>
- Windows: start <http://127.0.0.1:4200>
Bleakly efficient, I know.Nate
08/13/2025, 6:49 PMMarvin
08/13/2025, 6:49 PMMarvin
08/13/2025, 6:49 PMNate
08/13/2025, 6:50 PMhey bud can u tell me how to open the prefect ui from the cli
Marvin
08/13/2025, 6:50 PMMarvin
08/13/2025, 6:52 PMprefect cloud open
If you’re not logged in yet:
prefect cloud login
prefect cloud open
- If you’re running a local Prefect server:
prefect server start --ui
Then open the URL it prints (typically http://127.0.0.1:4200). You can change host/port if needed:
prefect server start --ui --host 0.0.0.0 --port 4200
Are you using Cloud or local?Nate
08/13/2025, 6:54 PMMarvin
08/13/2025, 6:54 PMMarvin
08/13/2025, 6:56 PMprefect dashboard open
That opens the UI for whatever your current profile is pointed at—Cloud or local server—without you needing to care. Very considerate of it, really.