File tree
58 files changed
+14
-8
lines changed- .devcontainer
- .github
- workflows
- .vscode
- config
- dags
- michael
- common
- migrations
- versions
- notion
- dbt/michael
- analyses
- macros
- models/staging/notion
- base
- seeds
- snapshots
- tests
- plugins
- hooks
- script
- tests
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
58 files changed
+14
-8
lines changed.devcontainer/Dockerfile
100644
100755
File mode changed.
.devcontainer/devcontainer.json
100644
100755
File mode changed.
.devcontainer/docker-compose.yml
100644
100755
File mode changed.
.dockerignore
100644
100755
File mode changed.
.gitattributes
100644
100755
File mode changed.
.github/CODEOWNERS
100644
100755
File mode changed.
.github/dependabot.yml
100644
100755
File mode changed.
.github/workflows/ci.yml
100644
100755
File mode changed.
.github/workflows/deploy.yml
100644
100755
File mode changed.
.gitignore
100644
100755
File mode changed.
.pre-commit-config.yaml
100644
100755
File mode changed.
.vscode/launch.json
100644
100755
File mode changed.
.vscode/settings.json
100644
100755
File mode changed.
Procfile
100644
100755
File mode changed.
README.md
100644
100755
+5
airflow.cfg
100644
100755
+9-8
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
427 | 427 |
| |
428 | 428 |
| |
429 | 429 |
| |
430 |
| - | |
| 430 | + | |
431 | 431 |
| |
432 | 432 |
| |
433 | 433 |
| |
| |||
469 | 469 |
| |
470 | 470 |
| |
471 | 471 |
| |
472 |
| - | |
| 472 | + | |
473 | 473 |
| |
474 | 474 |
| |
475 | 475 |
| |
| |||
1246 | 1246 |
| |
1247 | 1247 |
| |
1248 | 1248 |
| |
1249 |
| - | |
| 1249 | + | |
1250 | 1250 |
| |
1251 | 1251 |
| |
1252 | 1252 |
| |
| |||
1710 | 1710 |
| |
1711 | 1711 |
| |
1712 | 1712 |
| |
1713 |
| - | |
| 1713 | + | |
1714 | 1714 |
| |
1715 | 1715 |
| |
1716 | 1716 |
| |
1717 | 1717 |
| |
1718 | 1718 |
| |
1719 |
| - | |
| 1719 | + | |
1720 | 1720 |
| |
1721 | 1721 |
| |
1722 | 1722 |
| |
| |||
1728 | 1728 |
| |
1729 | 1729 |
| |
1730 | 1730 |
| |
1731 |
| - | |
| 1731 | + | |
1732 | 1732 |
| |
1733 | 1733 |
| |
1734 | 1734 |
| |
| |||
1762 | 1762 |
| |
1763 | 1763 |
| |
1764 | 1764 |
| |
1765 |
| - | |
| 1765 | + | |
| 1766 | + | |
1766 | 1767 |
| |
1767 | 1768 |
| |
1768 | 1769 |
| |
| |||
1896 | 1897 |
| |
1897 | 1898 |
| |
1898 | 1899 |
| |
1899 |
| - | |
| 1900 | + | |
1900 | 1901 |
| |
1901 | 1902 |
| |
1902 | 1903 |
| |
|
config/.gitkeep
100644
100755
File mode changed.
constraints.txt
100644
100755
File mode changed.
dags/.airflowignore
100644
100755
File mode changed.
dags/michael/__init__.py
100644
100755
File mode changed.
dags/michael/common/__init__.py
100644
100755
File mode changed.
dags/michael/common/bigquery.py
100644
100755
File mode changed.
dags/michael/datasets.py
100644
100755
File mode changed.
dags/michael/dbt.py
100644
100755
File mode changed.
dags/michael/migrate.py
100644
100755
File mode changed.
dags/michael/migrations/README
100644
100755
File mode changed.
dags/michael/migrations/alembic.ini
100644
100755
File mode changed.
dags/michael/migrations/env.py
100644
100755
File mode changed.
dags/michael/migrations/script.py.mako
100644
100755
File mode changed.
File mode changed.
dags/michael/notion/__init__.py
100644
100755
File mode changed.
dags/michael/notion/raw_notion__habits.py
100644
100755
File mode changed.
dbt/michael/.gitignore
100644
100755
File mode changed.
dbt/michael/README.md
100644
100755
File mode changed.
dbt/michael/analyses/.gitkeep
100644
100755
File mode changed.
dbt/michael/dbt_project.yml
100644
100755
File mode changed.
dbt/michael/macros/.gitkeep
100644
100755
File mode changed.
File mode changed.
File mode changed.
dbt/michael/models/staging/notion/schema.yml
100644
100755
File mode changed.
File mode changed.
dbt/michael/seeds/.gitkeep
100644
100755
File mode changed.
dbt/michael/snapshots/.gitkeep
100644
100755
File mode changed.
dbt/michael/tests/.gitkeep
100644
100755
File mode changed.
plugins/__init__.py
100644
100755
File mode changed.
plugins/hooks/__init__.py
100644
100755
File mode changed.
plugins/hooks/notion_hook.py
100644
100755
File mode changed.
requirements-dev.txt
100644
100755
File mode changed.
requirements.txt
100644
100755
File mode changed.
script/bootstrap
100644
100755
File mode changed.
script/setup
100644
100755
File mode changed.
script/test
100644
100755
File mode changed.
startup.txt
100644
100755
File mode changed.
tests/conftest.py
100644
100755
File mode changed.
tests/test_0_migrations.py
100644
100755
File mode changed.
tests/test_1_notion_load.py
100644
100755
File mode changed.
tests/test_9_dbt.py
100644
100755
File mode changed.
webserver_config.py
100644
100755
File mode changed.
0 commit comments