is there a way to get `prefect server create-tenan...
# prefect-server
a
is there a way to get
prefect server create-tenant ...
to use a different apollo endpoint via environment variables or cli args? It defaults to
<http://localhost:4200/graphql>
but I'm attempting to run this in a docker-compose file and need to use a different hostname than localhost
k
Yeah see this
a
what would the environment variable be for that particular setting?
PREFECT_SERVER__ENDPOINT="host:4200/graphql" prefect server create-tenant ...
something like this?
k
export PREFECT__SERVER__ENDPOINT=...
a
Ah thanks @Kevin Kho! That works :)
👍 1