Hi all, I have set up my Prefect Server, however, ...
# prefect-community
s
Hi all, I have set up my Prefect Server, however, the
API Tokens
option is disabled. How do I connect to my server, to register Flows, etc?
k
Prefect Server has no authentication so you just need to point your endpoint to the server IP.
Copy code
export PREFECT__SERVER__ENDPOINT = "YOUR_MACHINES_PUBLIC_IP:4200/graphql"
And then you will hit the Server API when you register. Also do
prefect backend server
❤️ 1