<@ULVA73B9P> Prefect 3.1, describe difference of prefect.toml and prefect.yaml
s
@Marvin Prefect 3.1, describe difference of prefect.toml and prefect.yaml
m
In Prefect 3.1, the
prefect.yaml
file is primarily used for configuring deployments. It describes base settings for your deployments, procedural steps for preparing them, and instructions for preparing the execution environment. It offers flexibility by allowing the file to be located in various directories and can be named differently as long as it ends with
.yaml
. The
prefect.toml
file typically serves a different purpose, commonly associated with environment settings or configuration management that can differ from deployment descriptions. While I couldn't find specific details about
prefect.toml
in the Prefect 3.1 documentation or issues, it's standard for configuration files in many applications, built using the TOML format for better readability and structure. For further details, you can explore more about the `prefect.yaml`'s usage in the deployments context here. If you have more specific needs about
prefect.toml
, you might need to check more specific configurations or purpose discussions within Prefect's community or documentation updates.
n
hi @syakesaba - this

video

covers this! tldr its a way set settings like
PREFECT_LOGGING_LEVEL
declaratively
🙌 1