cjansenson
07/01/2024, 12:31 PMMarvin
07/01/2024, 12:32 PMyaml
# Configuration YAML for the deployment
name: my_flow
prefect-version: 2.x.x
# Set the download location using deployment steps
pull:
- prefect.deployments.steps.set_working_directory:
directory: /desired/location
deployments:
- name: my_deployment
work_pool:
name: my_work_pool
This config sets the working directory to your desired location when pulling the flow. You can adjust /desired/location
to whatever path you need. For more detailed configurations, refer to the Prefect docs or the GitHub issues, primarily:
- Setting the working directory via deployment steps: official Prefect docs
- Sample issues and scenarios: GitHub issues search
If you encounter any specific problems or errors, feel free to ask!cjansenson
07/01/2024, 12:33 PM