https://prefect.io logo
l

Liam England

03/09/2022, 2:38 PM
Hi folks, Wondering if there's a simple way to register flows remotely when using prefect server? (no cloud option in this environment, unfortunately)
k

Kevin Kho

03/09/2022, 2:56 PM
What is the problem you face? You can point the local machine to the remote GraphQL API endpoint and then registration will be against the server
1
upvote 1
Just add this to the config.toml
Copy code
[server]
endpoint = "YOUR_MACHINES_PUBLIC_IP:4200/graphql"
1
3 Views