What is the best practice to save a deployment con...
# best-practices
b
What is the best practice to save a deployment configuration? Assuming the flows are on GitLab
n
hi @Ben Zehavi - please avoid tagging prefect employees. We try to get to everything as time allows
"best practice" questions often depend on who's doing the practice large organizations will often like declarative deployment definitions, so a
prefect.yaml
is often their best practice
other users/groups like python-everything, so they might like
Copy code
flow.from_source(
   source="mygitlaburl"
).deploy(...)
b
@Andy Irvine