How do I set working directory path when use flow....
# ask-marvin
x
How do I set working directory path when use flow.deploy(...)? (see my example in my first self reply)
For example:
Copy code
flow.from_source(
    source="playground",
    entrypoint="env_play.py:example_env",
    path="/home/xyz/prefect",
).deploy(
    name="play-deployment",
    work_pool_name="test-managed-pool",
)
This will result a section like this when use prefect deployment inspect:
Copy code
'path': None,
 'entrypoint': 'env_play.py:example_env',
Need to set the 'path' with deploy call. Is there a way to make it happen?