https://prefect.io logo
Title
a

Azuma

05/19/2020, 2:15 PM
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

Zachary Hughes

05/19/2020, 2:23 PM
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:
[server]
    [server.ui]
    graphql_url = "INSERT_ENDPOINT_HERE:4200/graphql"
a

Azuma

05/19/2020, 2:30 PM
Thank you very much for your reply
z

Zachary Hughes

05/19/2020, 2:40 PM
Absolutely! Let us know if you have any additional questions.