Skip to content

Latest commit

 

History

History
executable file
·
44 lines (28 loc) · 1.01 KB

README.md

File metadata and controls

executable file
·
44 lines (28 loc) · 1.01 KB

Configure environment

  1. Install prerequisites:

  2. Fork & Clone this repository and open in IDE

  3. Spin up Docker containers

    All the services are configured via Docker containers.

    • devcontainer
    • Postgres
    # build dev container
    devcontainer build .
    
    # open dev container
    devcontainer open .

  4. Verify you are in a development container by running commands:

    dbt --version

    If any of these commands fails printing out used software version then you are probably running it on your local machine not in a dev container!

Install dbt packages

  1. Install modules via packages.yml

    dbt clean # clean temp files
    dbt deps # install dependencies (modules)