├── .devcontainer └── devcontainer.json ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .pre-commit-config.yaml ├── .sqlfluff ├── .sqlfluffignore ├── .vscode └── extensions.json ├── README.md ├── Taskfile.yml ├── data ├── .gitkeep └── testing.json ├── dbt_project.yml ├── el-modal.py ├── el.py ├── generate_fixtures.sql ├── macros └── .gitkeep ├── models ├── marts │ ├── _properties.yml │ ├── issue_events.sql │ ├── pull_request_events.sql │ ├── push_events.sql │ ├── repos.sql │ └── users.sql └── staging │ └── github │ ├── _sources.yml │ └── stg_events.sql ├── package-lock.yml ├── packages.yml ├── profiles.yml ├── reports ├── .evidence │ └── customization │ │ ├── .profile.json │ │ └── custom-formatting.json ├── .gitignore ├── .npmrc ├── .vscode │ └── extensions.json ├── README.md ├── evidence.plugins.yaml ├── package-lock.json ├── package.json ├── pages │ ├── index.md │ ├── issues.md │ └── pull_requests.md └── sources │ └── quack │ ├── connection.yaml │ ├── issues.sql │ └── pull_requests.sql ├── requirements.in ├── requirements.txt └── setup.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.* 2 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.sqlfluff -------------------------------------------------------------------------------- /.sqlfluffignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.sqlfluffignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/data/testing.json -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /el-modal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/el-modal.py -------------------------------------------------------------------------------- /el.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/el.py -------------------------------------------------------------------------------- /generate_fixtures.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/generate_fixtures.sql -------------------------------------------------------------------------------- /macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/marts/_properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/marts/_properties.yml -------------------------------------------------------------------------------- /models/marts/issue_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/marts/issue_events.sql -------------------------------------------------------------------------------- /models/marts/pull_request_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/marts/pull_request_events.sql -------------------------------------------------------------------------------- /models/marts/push_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/marts/push_events.sql -------------------------------------------------------------------------------- /models/marts/repos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/marts/repos.sql -------------------------------------------------------------------------------- /models/marts/users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/marts/users.sql -------------------------------------------------------------------------------- /models/staging/github/_sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/staging/github/_sources.yml -------------------------------------------------------------------------------- /models/staging/github/stg_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/models/staging/github/stg_events.sql -------------------------------------------------------------------------------- /package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/package-lock.yml -------------------------------------------------------------------------------- /packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/packages.yml -------------------------------------------------------------------------------- /profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/profiles.yml -------------------------------------------------------------------------------- /reports/.evidence/customization/.profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/.evidence/customization/.profile.json -------------------------------------------------------------------------------- /reports/.evidence/customization/custom-formatting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/.evidence/customization/custom-formatting.json -------------------------------------------------------------------------------- /reports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/.gitignore -------------------------------------------------------------------------------- /reports/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/.npmrc -------------------------------------------------------------------------------- /reports/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/.vscode/extensions.json -------------------------------------------------------------------------------- /reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/README.md -------------------------------------------------------------------------------- /reports/evidence.plugins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/evidence.plugins.yaml -------------------------------------------------------------------------------- /reports/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/package-lock.json -------------------------------------------------------------------------------- /reports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/package.json -------------------------------------------------------------------------------- /reports/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/pages/index.md -------------------------------------------------------------------------------- /reports/pages/issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/pages/issues.md -------------------------------------------------------------------------------- /reports/pages/pull_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/pages/pull_requests.md -------------------------------------------------------------------------------- /reports/sources/quack/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/reports/sources/quack/connection.yaml -------------------------------------------------------------------------------- /reports/sources/quack/issues.sql: -------------------------------------------------------------------------------- 1 | select * from octocatalog.issue_events; 2 | -------------------------------------------------------------------------------- /reports/sources/quack/pull_requests.sql: -------------------------------------------------------------------------------- 1 | select * from octocatalog.pull_request_events limit 20000; 2 | -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gwenwindflower/octocatalog/HEAD/setup.sh --------------------------------------------------------------------------------