-
Install prerequisites:
-
Fork & Clone this repository and open in IDE
-
Spin up Docker containers
All the services are configured via Docker containers.
- devcontainer
- Postgres
# build dev container devcontainer build . # open dev container devcontainer open .
-
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 modules via packages.yml
dbt clean # clean temp files dbt deps # install dependencies (modules)