Xun Wang
07/24/2024, 4:53 PMXun Wang
07/24/2024, 4:55 PMflow.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:
'path': None,
'entrypoint': 'env_play.py:example_env',
Need to set the 'path' with deploy call. Is there a way to make it happen?