dbt metadata utils
1.0.0
Parse dbt artifacts, enrich them, and search them with Algolia.
Check the online demo at https://dbt-metadata-utils.guitton.co/
All you will need is:
.env
file following .env.example
and fill in your config values from the Algolia dashboardFor the dbt project, we will use one of the example projects listed on the dbt docs: the jaffle_shop codebase.
For testing things out with this project, one option is to work in your local environment.
Install the dependencies (in a virtual environment) with the following command:
make install
Then index records into your Algolia search index:
make update-git-metadata
make update-index
Finally, start the search webapp:
make run
Whether you want a way to deploy dbt-metadata-utils in production or if simply you're running into issues, you can start the project using docker-compose
:
docker-compose up
open http://localhost:8080
make develop