Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 899 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 899 Bytes

Welcome to your new dbt project!

Using this project with postgres

For working in postgres running in a Docker container on your machine, spun up by make setup-db in the dbt-core repo, add the following to your profile:

basic_dbt:
  outputs:
    dev:
      dbname: dbt
      host: localhost
      password: password
      port: 5432
      schema: dbt_testing
      threads: 4
      type: postgres
      user: root
  target: dev

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