How do we run a "local server"?
# pacc-dec-17-18-2024
m
How do we run a "local server"?
b
prefect server start
in the terminal!
👍 1
m
follow up question; how do we point running the flow with
.serve
at the local instead of the cloud after we have that running?
especially since I can't seem to create a personal workspace
b
You can create a new prefect profile in your terminal that points to the local server!
Copy code
prefect profile create my-local-profile
prefect profile use my-local-profile
prefect config set PREFECT_API_URL=<http://127.0.0.1:4200/api>
👍 1
^ running these three commands in succession in your terminal should do the trick