<@ULVA73B9P>, I am deploying flows locally. I wan...
# marvin-in-the-wild
c
@Marvin, I am deploying flows locally. I want to indicate the location of the download. How can I do that?
m
To set the location for the download when deploying flows locally, you can use Prefect's deployment steps to specify where the flow should be pulled and set the working directory accordingly. Here's a basic example of how you can set the download location in your `prefect.yaml`:
Copy code
yaml
# 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!
c
But I am not pulling from github