<@ULVA73B9P> which are the possible values for "st...
# marvin-in-the-wild
r
@Marvin which are the possible values for "storage" in the function Deployment.build_from_flow()
m
The Prefect documentation doesn't explicitly list all the possible storage options for the
Deployment.build_from_flow()
function in a single place. However, based on the information about where to store your flow code and a guide discussing storage options with a focus on deployments, there are multiple storage backends you can configure for your flow. Here are some types of storage mentioned within the Prefect Documentation: 1. Local storage — often used with a Local Subprocess work pool for initial experimentation. For a full description of storage options and more detailed guidance, check out the following links: - Where to Store Your Flow Code - Deployments Block-based Documentation However, it's worth noting that specific storage backends (such as S3, GCS, GitHub, etc.) will depend on which version of Prefect you are using, as capabilities have evolved over time. To see a detailed and accurate list, please refer to the version-specific documentation or source code for
Deployment.build_from_flow()
in your version of Prefect.