Skip to content

Commit

Permalink
docs: Add DBT starter-kit commands
Browse files Browse the repository at this point in the history
  • Loading branch information
1ambda committed Sep 3, 2023
1 parent 9aa6e63 commit 2ce344d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
- [x] Trino 425
- [x] Airflow 2.7.0
- [x] Jupyterlab
- [x] DBT Project

<br/>

## Getting Started

Expand Down Expand Up @@ -33,10 +36,21 @@ Then access the lakehouse services.
- Flink SQL (Iceberg): `docker exec -it flink-jobmanager flink-sql-iceberg`
- Flink SQL (Hudi): `docker exec -it flink-jobmanager flink-sql-hudi;`

# DBT Starter-kit
<br/>

## DBT Starter it

```bash
make trino-cli
# Run trino-related containers
make compose.trino;

# Prepare iceberg schema
make trino-cli;
$ create schema iceberg.staging WITH ( LOCATION = 's3://datalake/staging' );

# Execute dbt commands
cd dbts;
dbt deps;
dbt run;
dbt test;
```

0 comments on commit 2ce344d

Please sign in to comment.