Skip to content

Commit 955f18f

Browse files
Added dbt docs serve
1 parent bc25357 commit 955f18f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,11 @@ dbt-compile:
229229
dbt-docs-generate:
230230
@docker compose exec dbtbase /venv/bin/dbt docs generate --project-dir /apps/dbt_project
231231

232+
# Serve dbt documentation
233+
dbt-docs-serve:
234+
@docker compose exec dbtbase /venv/bin/dbt docs serve --project-dir /apps/dbt_project
235+
232236
# Verify dbt transformed data in DuckDB
233237
verify-dbt:
234238
@docker compose exec dbtbase /usr/local/bin/duckdb /apps/dbt.duckdb \
235-
-c "SELECT 'staging.stg_claims' as model, COUNT(*) as row_count FROM staging.stg_claims UNION ALL SELECT 'marts.fct_claims_summary', COUNT(*) FROM marts.fct_claims_summary;"
239+
-c "SELECT 'staging.stg_claims' as model, COUNT(*) as row_count FROM staging.stg_claims UNION ALL SELECT 'marts.fct_claims_summary', COUNT(*) FROM marts.fct_claims_summary;"

0 commit comments

Comments
 (0)