Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akihokurino/dbt-sample
dbt sample
https://github.com/akihokurino/dbt-sample
bigquery dbt python3
Last synced: 5 days ago
JSON representation
dbt sample
- Host: GitHub
- URL: https://github.com/akihokurino/dbt-sample
- Owner: akihokurino
- Created: 2025-02-07T10:31:40.000Z (5 days ago)
- Default Branch: master
- Last Pushed: 2025-02-07T12:35:53.000Z (5 days ago)
- Last Synced: 2025-02-07T13:38:26.800Z (5 days ago)
- Topics: bigquery, dbt, python3
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dbt sample
## setup
```shell
python3 -m venv venv
source venv/bin/activate
pip install poetry
poetry add dbt-bigquery
dbt --version
dbt init dbt_sample_bigquery
````~/.dbt/profiles.yml`
```yaml
dbt_sample_bigquery:
outputs:
dev:
dataset: my_dataset
job_execution_timeout_seconds: 300
job_retries: 1
location: asia-northeast1
method: oauth
priority: interactive
project: my_project
threads: 1
type: bigquery
target: dev
```## execution
```shell
dbt debug
dbt compile
dbt run
```## test
```shell
dbt deps
dbt test
```