Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(templates): add environment support to the cookie cutter for meltano.yml #1093

Merged
merged 4 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
version: 1
send_anonymous_usage_stats: true
project_id: "{{cookiecutter.tap_id}}"
default_environment: test
environments:
pnadolny13 marked this conversation as resolved.
Show resolved Hide resolved
- name: test
plugins:
extractors:
- name: "{{cookiecutter.tap_id}}"
Expand All @@ -10,6 +13,8 @@ plugins:
- state
- catalog
- discover
- about
- stream-maps
config:
start_date: '2010-01-01T00:00:00Z'
settings:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
version: 1
send_anonymous_usage_stats: true
project_id: "{{cookiecutter.target_id}}"
default_environment: test
environments:
- name: test
plugins:
extractors: []
loaders:
- name: "{{cookiecutter.target_id}}"
namespace: "{{cookiecutter.library_name}}"
pip_url: -e .
capabilities:
- state
- catalog
- discover
- about
- stream-maps
- record-flattening
pnadolny13 marked this conversation as resolved.
Show resolved Hide resolved
config:
start_date: '2010-01-01T00:00:00Z'
settings:
Expand Down