Emilio
02/12/2025, 10:02 AMMarvin
02/12/2025, 10:03 AMprefect config set
and prefect config unset
.Emilio
02/12/2025, 10:07 AMMarvin
02/12/2025, 10:12 AMPREFECT___SERVER___HOST
) in the Prefect 0.15.13 documentation. However, these variables are typically used to denote nested configuration settings.
Here's a general approach you can take:
1. Environment Variable Naming: Double underscores (__
) in environment variable names are often used to represent nested configuration keys. For example, PREFECT___SERVER___HOST
might correspond to a configuration setting like server.host
.
2. Setting Environment Variables: You can set these environment variables in your shell before starting your Prefect server or running your Prefect flows. For example:
bash
export PREFECT___SERVER___HOST='your_host_value'
3. Using Prefect CLI: Ensure that your Prefect server or agent is started after setting these environment variables so that they are picked up correctly.
For more details, you might want to explore the Prefect settings documentation.