https://github.com/unytics/dbt-minimal
https://github.com/unytics/dbt-minimal
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/unytics/dbt-minimal
- Owner: unytics
- License: mit
- Created: 2024-11-27T16:08:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-03T22:31:27.000Z (over 1 year ago)
- Last Synced: 2025-12-19T20:43:38.333Z (6 months ago)
- Size: 122 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```