Go to file
2022-10-06 16:52:26 -04:00
.github/workflows add the initial project 2022-10-06 16:52:26 -04:00
analyses push to main 2022-10-05 15:53:53 -04:00
macros add the initial project 2022-10-06 16:52:26 -04:00
models add the initial project 2022-10-06 16:52:26 -04:00
snapshots push to main 2022-10-05 15:53:53 -04:00
tests push to main 2022-10-05 15:53:53 -04:00
.env add the initial project 2022-10-06 16:52:26 -04:00
.gitignore push to main 2022-10-05 15:53:53 -04:00
dbt_project.yml add the initial project 2022-10-06 16:52:26 -04:00
LICENSE Initial commit 2022-09-14 17:40:45 -04:00
packages.yml add the initial project 2022-10-06 16:52:26 -04:00
profiles.yml add the initial project 2022-10-06 16:52:26 -04:00
README.md add the initial project 2022-10-06 16:52:26 -04:00

Welcome to your new dbt project!

Using the starter project

Try running the following commands:

  • dbt run
  • dbt test

Resources:

  • Learn more about dbt in the docs
  • Check out Discourse for commonly asked questions and answers
  • Join the chat on Slack for live discussions and support
  • Find dbt events near you
  • Check out the blog for the latest news on dbt's development and best practices

Steps:

step 1: update the profiles.yml

ethereum:
  target: dev
  outputs:
    dev:
      type: snowflake
      account: <ACCOUNT>
      role: <ROLE>
      user: <USERNAME>
      password: <PASSWORD>
      region: <REGION>
      database: ETHEREUM_DEV
      warehouse: <WAREHOUSE>
      schema: silver
      threads: 12
      client_session_keep_alive: False
      query_tag: <TAG>
    prod:
      type: snowflake
      account: <ACCOUNT>
      role: <ROLE>
      user: <USERNAME>
      password: <PASSWORD>
      region: <REGION>
      database: ETHEREUM
      warehouse: <WAREHOUSE>
      schema: silver
      threads: 12
      client_session_keep_alive: False
      query_tag: <TAG>

lambda integration