Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

prefect.yaml 1.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  1. # Welcome to your prefect.yaml file! You can use this file for storing and managing
  2. # configuration for deploying your flows. We recommend committing this file to source
  3. # control along with your flow code.
  4. # Generic metadata about this project
  5. name: weather_health
  6. prefect-version: 3.4.3
  7. # build section allows you to manage and build docker images
  8. build: null
  9. # push section allows you to manage if and how this project is uploaded to remote locations
  10. push: null
  11. # pull section allows you to provide instructions for cloning this project in remote locations
  12. pull:
  13. - prefect.deployments.steps.git_clone:
  14. repository: https://github.com/Danselem/weather_health.git
  15. branch: main
  16. access_token: null
  17. # the deployments section allows you to provide configuration for deploying flows
  18. deployments:
  19. - name: weather-health
  20. version: 0.1
  21. tags: []
  22. description: null
  23. schedule: {}
  24. flow_name: null
  25. entrypoint: src/train.py:main
  26. parameters: {}
  27. work_pool:
  28. name: null
  29. work_queue_name: null
  30. job_variables: {}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...