Hello everyone! I am new to Prefect, please tell m...
# prefect-community
a
Hello everyone! I am new to Prefect, please tell me if starting is equivalent if I do "docker-compouse up" in prefect/server/docker or run the "prefect server start" command in cmd? 2) Where is the configuration file stored at startup through the "prefect server start" command? (For example, if I need to install my endpoint different from localhost)
z
Hi @Azuma! Yes,
prefect server start
is a wrapper around our docker-compose usage! It's worth noting that
prefect server start
is slightly more configurable, letting you specify ports at execution time. If you want to modify your endpoint or any other config value, you'll want to do so in your
config.toml
file. For example, if you wanted your UI to point to something other than localhost, you'd want a configuration in
config.toml
that looked something like this:
Copy code
[server]
    [server.ui]
    graphql_url = "INSERT_ENDPOINT_HERE:4200/graphql"
a
Thank you very much for your reply
z
Absolutely! Let us know if you have any additional questions.