This repo contains dbt models to create a dimensional model with data sourced from [Singer GitHub Tap] (https://github.com/singer-io/tap-github) and Singer PostgreSQL target
-
Install dependencies in virtual environment with
pipenv install --skip-lock
-
Run PostgreSQL database in background with:
docker-compose up -d postgres
-
Create a GitHub access token. Login to your GitHub account, go to the Personal Access Tokens settings page, and generate a new token with at least the repo scope. Save this access token, you'll need it for the next step.
-
Create
github.sample.json
fromgithub.config.sample.json
. Create a JSON file containing the access token you just created and the path to one or multiple repositories that you want to extract data from. Each repo path should be space delimited. The repo path is relative to https://github.com/. For example the path for this repository is singer-io/tap-github. -
Run the tap in discovery mode to get properties.json file
pipenv run tap-github --config github.config.json --discover > properties.json
-
In the properties.json file, select the streams to sync Each stream in the properties.json file has a "schema" entry. To select a stream to sync, add
"selected": true
to that stream's "schema" entry. For example, to sync the pull_requests stream:... "tap_stream_id": "pull_requests", "schema": { "selected": true, "properties": { "updated_at": { "format": "date-time", "type": [ "null", "string" ] } ...
-
Run the application:
pipenv run tap-github --config github.config.json --properties properties.json
-
Run DBT models:
pipenv run dbt deps pipenv run dbt run
-
Run DBT tests:
pipenv run dbt tests