-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.yml
29 lines (28 loc) · 1.27 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
27
28
29
name: "Lead Collection"
# You can have as many pipelines as you want
pipelines:
# Unique name for your pipeline, must match the folder name in ./pipelines/<folder_name>
- slug: "clean_form_entries"
# During local development these are CSV files located in the ./sources folder.
sources:
# The order is relevant, these sources will be passed as parameters to the run() function in the same order
- form_entries
- salutations
# Ignored during local development, it's the data source to which the pipeline data will be saved to
destination: datasource_csv
# Order is relevant, they will execute one on top of the other.
transformations:
- build_hello_world
- add_salutation
# Unique name for your pipeline
- slug: "form_entries_stream"
# During local development these are CSV files located in te ./sources folder.
sources:
# The order is relevant, these sources will be passed as parameters to the run() function in the same order
- form_entries
- salutations
# Ignored during local development, it's the data source to which the pipeline data will be saved to
destination: datasource_csv
# Order is relevant, they will execute one on top of the other.
transformations:
- process_stream