This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from brunomurino/dbt-issue-2533
Added sample_profiles.yml so that adapter works with new --adapter option of dbt init
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
default: | ||
outputs: | ||
|
||
dev: | ||
type: presto | ||
method: none # optional, one of {none | ldap | kerberos} | ||
user: [dev_user] | ||
password: [password] # required if method is ldap or kerberos | ||
database: [database name] | ||
host: [hostname] | ||
port: [port number] | ||
schema: [dev_schema] | ||
threads: [1 or more] | ||
|
||
prod: | ||
type: presto | ||
method: none # optional, one of {none | ldap | kerberos} | ||
user: [prod_user] | ||
password: [prod_password] # required if method is ldap or kerberos | ||
database: [database name] | ||
host: [hostname] | ||
port: [port number] | ||
schema: [prod_schema] | ||
threads: [1 or more] | ||
|
||
target: dev |
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