Hi all – I’m just getting started kicking the tire...
# prefect-community
d
Hi all – I’m just getting started kicking the tires but I’m loving the API so far. Newbie question: What’s the recommended way to handle port conflicts if I’m running a local Postgres server on 5432 on my dev machine? Point Prefect at my local Postgres instance instead of the dockerized service? Use a different forwarded port on the docker service? Something else?
r
I had the same problem, and you can choose the ports for the deployment
Copy code
prefect server start --postgres-port xxxx
upvote 4
d
You learn something new every day. Thanks!