This is a sample project used for Analytics Engineers Club
- Clone this github repo
- Install dbt following these instructions
- Auth your gcloud account with
gcloud auth application-default login - Copy the example profile to your
~/.dbtfolder (created when installing dbt):
$ cp ./sample.profiles.yml ~/.dbt/profiles.yml- Populate
~/.dbt/profiles.ymlwith the credentials you obtained in step 3:
$ code ~/.dbt/profiles.yml- Verify that you can connect to your database
$ dbt debug- Verify that you can run dbt
$ dbt run- Verify that all the test pass
$ dbt test- Generate the docs for the project
$ dbt docs generate- Serve the docs for the project
$ dbt docs serve