-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
189 changed files
with
18,520 additions
and
2,424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.5.2 | ||
0.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
targets: | ||
- name: "My Postgres database" | ||
type: postgres | ||
host: ADD HERE | ||
database: ADD HERE # Name of database | ||
port: 5432 # Default Postgres port | ||
username: ADD HERE | ||
password: ADD HERE | ||
ssl: false # SSL disabled by default | ||
variables: | ||
foo: bar | ||
steps: | ||
- name: ADD HERE | ||
queries: | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true | ||
- name: ADD HERE | ||
queries: | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true | ||
- name: ADD HERE | ||
queries: | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
targets: | ||
- name: "My Snowflake database" | ||
type: snowflake | ||
account: ADD HERE # Your Snowflake account name | ||
region: ADD HERE # Leave blank for default us-east-1 | ||
database: ADD HERE # Name of database | ||
warehouse: ADD HERE # Name of warehouse to run the queries | ||
username: ADD HERE | ||
password: ADD HERE | ||
host: # Leave blank | ||
port: # Leave blank | ||
ssl: true # Snowflake connection is always secured by TLS | ||
variables: | ||
foo: bar | ||
steps: | ||
- name: ADD HERE | ||
queries: | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true | ||
- name: ADD HERE | ||
queries: | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true | ||
- name: ADD HERE | ||
queries: | ||
- name: ADD HERE | ||
file: ADD REL/ABS PATH | ||
template: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.