generated from breatheco-de/dataflow-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.yml
26 lines (25 loc) · 1.29 KB
/
project.yml
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
name: "4Geeks.com Aquisition"
# You can have as many pipelines as you want
pipelines:
# Unique name for your pipeline, must match folder name in ./pipelines/<folder_name>
- slug: "clean_invites"
# During local development these are CSV files located at te ./sources folder.
sources:
# The order is relevant, this sources will be passed as parameters to the run() function in the same order
- authenticate_userinvite
# Ignored during local development, its the datasource to wich the pipeline data will be saved to
destination: cleaned_user_invites
# Order is relevant, they will execute one on top of the other.
transformations:
- build_hello_world
# Unique name for your pipeline, must match folder name in ./pipelines/<folder_name>
- slug: "clean_assignments"
# During local development these are CSV files located at te ./sources folder.
sources:
# The order is relevant, this sources will be passed as parameters to the run() function in the same order
- 4geeks-com-assignments
# Ignored during local development, its the datasource to wich the pipeline data will be saved to
destination: clean_user_assignments
# Order is relevant, they will execute one on top of the other.
transformations:
- nothing_assignments