Hello! I'm creating `Deployment` from Python code,...
# best-practices
a
Hello! I'm creating
Deployment
from Python code, but I need to set a custom
PREFECT_API_URL
but not through an environment variable. Is there a way to update the
Settings
directly from code?
1
z
with prefect.settings.temporary_settings
will get you there
a
Thanks a lot !