Enda Peng
04/22/2021, 11:45 PMgraphql
. Only move ui and server port
prefect server start --ui-port 30001 --server-port 30002 --no-postgres-port --no-hasura-port --no-graphql-port
⢠On prefect server
tab on the web application, type in <http://localhost:30002/graphql>
to reflect the change
⢠You will be blocked on next tap when creating tenant, add this to your ~/.prefect/config.toml. Otherwise command prefect agent start --name "Default Agent"
will by default access port 4200
instead
server]
host = "<http://localhost>"
port = "4200"
host_port = "30002"
endpoint = "${server.host}:${server.host_port}"
Then everything all setnicholas
04/23/2021, 12:21 AM