John Mizerany
05/26/2023, 1:27 PMline 186, in deploy
with open("prefect.yaml", "r") as f:
FileNotFoundError: [Errno 2] No such file or directory: 'prefect.yaml'
I have the following folder structure:
flows /
project_1 /
flow.py
prefect.yaml
deployment.yaml
I know it’s looking for that prefect.yaml
file, but does the deployment.yaml file have to be in the same directory?alex
05/26/2023, 1:35 PMprefect.yaml
file should also be at the root of the project.John Mizerany
05/26/2023, 1:36 PMalex
05/26/2023, 1:38 PMJohn Mizerany
05/26/2023, 1:39 PMalex
05/26/2023, 2:15 PMprefect deploy
from each of those nested directories if your decide to use that pattern.John Mizerany
05/26/2023, 2:23 PM