Hello Team, we're following the instructions
here to replace the deprecated
Deployment.build_from_flow
with
flow.deploy
. Previously we were using
path
parameter in
Deployment
class which indicates the path to the working directory for the workflow, relative to remote storage or, if stored on a local filesystem, an absolute path. However, there seems no equivalent parameter in the
flow.deploy
, as the only way seems to be using
flow.from_source (source = ..., entrypoint = ...).deploy(...)
. We wanna use an absolute path for local development since it's stored on a local filesystem, instead of pulling from the repo every time. Are there any way to do that?