An open API service indexing awesome lists of open source software.

https://github.com/unytics/dbt-minimal


https://github.com/unytics/dbt-minimal

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

# Minimal dbt project for BigQuery

1. Install dbt for bigquery

```
pip install dbt-bigquery
```

2. Update `profiles.yml` with your Google Cloud variables: `project`, `dataset` and `location`.

3. Create source tables by uploading csv seeds

```
dbt seed
```

4. Build models

```
dbt run
```