To start working with dbt-metabase you can run the following command:
Open your terminal then run the following commands:
git clone git@github.com:djamier/dbt-metabase.gitsource config.shThis command will do the following things:
- Create
venvdirectory if not exist. - Activate virtual environment.
- Update to latest pip.
- Install all pip packages defined in
requirements.txt.
To start dbt-metabase, you can run the following commands:
docker-compose up -dThis command will start dbt, metabase, also postgres database and its dependencies in separate Docker containers, and the -d flag runs the containers in detached mode, allowing you to continue using your terminal.
cd dbt_project/second_project
dbt deps
touch profiles.yml
dbt runTBD
TBD
To stop working with dbt-metabase , you can run the following commands:
docker-compose down
deactivate