├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish-docs-main.yml │ ├── publish-docs-release.yml │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── dbt_loom ├── __init__.py ├── clients │ ├── az_blob.py │ ├── dbt_cloud.py │ ├── dbx.py │ ├── gcs.py │ ├── paradime.py │ ├── s3.py │ └── snowflake_stage.py ├── config.py ├── logging.py ├── manifests.py └── shims.py ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── advanced-configuration.md ├── getting-started.md └── index.md ├── mkdocs.yml ├── pyproject.toml ├── test_projects ├── customer_success │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .sqlfluff │ ├── .sqlfluffignore │ ├── README.md │ ├── Taskfile.yml │ ├── analyses │ │ └── .gitkeep │ ├── dbt_loom.config.yml │ ├── dbt_project.yml │ ├── jaffle-data │ │ └── raw_customers.csv │ ├── macros │ │ ├── .gitkeep │ │ └── cents_to_dollars.sql │ ├── meltano.yml │ ├── models │ │ ├── marts │ │ │ ├── __models.yml │ │ │ ├── customer_status_histories.py │ │ │ └── customers.sql │ │ └── staging │ │ │ ├── __models.yml │ │ │ ├── __sources.yml │ │ │ └── stg_customers.sql │ ├── package-lock.yml │ ├── packages.yml │ ├── profiles.yml │ ├── reports │ │ ├── .evidence │ │ │ └── customization │ │ │ │ └── custom-formatting.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ └── pages │ │ │ ├── analysis │ │ │ └── seasonality-investigation.md │ │ │ ├── customers │ │ │ ├── [customer].md │ │ │ └── index.md │ │ │ ├── index.md │ │ │ └── stores │ │ │ ├── [city].md │ │ │ └── index.md │ ├── requirements.txt │ ├── snapshots │ │ └── .gitkeep │ └── tests │ │ └── .gitkeep └── revenue │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .sqlfluff │ ├── .sqlfluffignore │ ├── README.md │ ├── Taskfile.yml │ ├── analyses │ └── .gitkeep │ ├── dbt_loom.config.yml │ ├── dbt_project.yml │ ├── jaffle-data │ ├── raw_items.csv │ ├── raw_orders.csv │ ├── raw_products.csv │ ├── raw_stores.csv │ └── raw_supplies.csv │ ├── macros │ ├── .gitkeep │ └── cents_to_dollars.sql │ ├── meltano.yml │ ├── models │ ├── groups.yml │ ├── marts │ │ ├── __models.yml │ │ ├── accounts.sql │ │ ├── orders_v1.sql │ │ └── orders_v2.sql │ └── staging │ │ ├── __models.yml │ │ ├── __sources.yml │ │ ├── stg_accounts.sql │ │ ├── stg_locations.sql │ │ ├── stg_order_items.sql │ │ ├── stg_orders.sql │ │ ├── stg_products.sql │ │ └── stg_supplies.sql │ ├── package-lock.yml │ ├── packages.yml │ ├── profiles.yml │ ├── reports │ ├── .evidence │ │ └── customization │ │ │ └── custom-formatting.json │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ └── pages │ │ ├── analysis │ │ └── seasonality-investigation.md │ │ ├── customers │ │ ├── [customer].md │ │ └── index.md │ │ ├── index.md │ │ └── stores │ │ ├── [city].md │ │ └── index.md │ ├── requirements.txt │ ├── seeds │ ├── __seeds.yml │ ├── integers.csv │ └── seed_accounts.csv │ ├── snapshots │ └── .gitkeep │ └── tests │ └── .gitkeep ├── tests ├── __init__.py ├── test_dbt_core_execution.py ├── test_mainfest_node.py └── test_manifest_loaders.py └── uv.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish-docs-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/workflows/publish-docs-main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/workflows/publish-docs-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/README.md -------------------------------------------------------------------------------- /dbt_loom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/__init__.py -------------------------------------------------------------------------------- /dbt_loom/clients/az_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/az_blob.py -------------------------------------------------------------------------------- /dbt_loom/clients/dbt_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/dbt_cloud.py -------------------------------------------------------------------------------- /dbt_loom/clients/dbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/dbx.py -------------------------------------------------------------------------------- /dbt_loom/clients/gcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/gcs.py -------------------------------------------------------------------------------- /dbt_loom/clients/paradime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/paradime.py -------------------------------------------------------------------------------- /dbt_loom/clients/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/s3.py -------------------------------------------------------------------------------- /dbt_loom/clients/snowflake_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/clients/snowflake_stage.py -------------------------------------------------------------------------------- /dbt_loom/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/config.py -------------------------------------------------------------------------------- /dbt_loom/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/logging.py -------------------------------------------------------------------------------- /dbt_loom/manifests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/manifests.py -------------------------------------------------------------------------------- /dbt_loom/shims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/dbt_loom/shims.py -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/advanced-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/docs/advanced-configuration.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_projects/customer_success/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/.gitignore -------------------------------------------------------------------------------- /test_projects/customer_success/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/.pre-commit-config.yaml -------------------------------------------------------------------------------- /test_projects/customer_success/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/.sqlfluff -------------------------------------------------------------------------------- /test_projects/customer_success/.sqlfluffignore: -------------------------------------------------------------------------------- 1 | reports 2 | target 3 | dbt_packages 4 | macros 5 | -------------------------------------------------------------------------------- /test_projects/customer_success/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/README.md -------------------------------------------------------------------------------- /test_projects/customer_success/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/Taskfile.yml -------------------------------------------------------------------------------- /test_projects/customer_success/analyses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/customer_success/dbt_loom.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/dbt_loom.config.yml -------------------------------------------------------------------------------- /test_projects/customer_success/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/dbt_project.yml -------------------------------------------------------------------------------- /test_projects/customer_success/jaffle-data/raw_customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/jaffle-data/raw_customers.csv -------------------------------------------------------------------------------- /test_projects/customer_success/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/customer_success/macros/cents_to_dollars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/macros/cents_to_dollars.sql -------------------------------------------------------------------------------- /test_projects/customer_success/meltano.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/meltano.yml -------------------------------------------------------------------------------- /test_projects/customer_success/models/marts/__models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/models/marts/__models.yml -------------------------------------------------------------------------------- /test_projects/customer_success/models/marts/customer_status_histories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/models/marts/customer_status_histories.py -------------------------------------------------------------------------------- /test_projects/customer_success/models/marts/customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/models/marts/customers.sql -------------------------------------------------------------------------------- /test_projects/customer_success/models/staging/__models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/models/staging/__models.yml -------------------------------------------------------------------------------- /test_projects/customer_success/models/staging/__sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/models/staging/__sources.yml -------------------------------------------------------------------------------- /test_projects/customer_success/models/staging/stg_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/models/staging/stg_customers.sql -------------------------------------------------------------------------------- /test_projects/customer_success/package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/package-lock.yml -------------------------------------------------------------------------------- /test_projects/customer_success/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/packages.yml -------------------------------------------------------------------------------- /test_projects/customer_success/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/profiles.yml -------------------------------------------------------------------------------- /test_projects/customer_success/reports/.evidence/customization/custom-formatting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/.evidence/customization/custom-formatting.json -------------------------------------------------------------------------------- /test_projects/customer_success/reports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/.gitignore -------------------------------------------------------------------------------- /test_projects/customer_success/reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/README.md -------------------------------------------------------------------------------- /test_projects/customer_success/reports/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/package-lock.json -------------------------------------------------------------------------------- /test_projects/customer_success/reports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/package.json -------------------------------------------------------------------------------- /test_projects/customer_success/reports/pages/analysis/seasonality-investigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/pages/analysis/seasonality-investigation.md -------------------------------------------------------------------------------- /test_projects/customer_success/reports/pages/customers/[customer].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/pages/customers/[customer].md -------------------------------------------------------------------------------- /test_projects/customer_success/reports/pages/customers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/pages/customers/index.md -------------------------------------------------------------------------------- /test_projects/customer_success/reports/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/pages/index.md -------------------------------------------------------------------------------- /test_projects/customer_success/reports/pages/stores/[city].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/pages/stores/[city].md -------------------------------------------------------------------------------- /test_projects/customer_success/reports/pages/stores/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/reports/pages/stores/index.md -------------------------------------------------------------------------------- /test_projects/customer_success/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/customer_success/requirements.txt -------------------------------------------------------------------------------- /test_projects/customer_success/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/customer_success/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/revenue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/.gitignore -------------------------------------------------------------------------------- /test_projects/revenue/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/.pre-commit-config.yaml -------------------------------------------------------------------------------- /test_projects/revenue/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/.sqlfluff -------------------------------------------------------------------------------- /test_projects/revenue/.sqlfluffignore: -------------------------------------------------------------------------------- 1 | reports 2 | target 3 | dbt_packages 4 | macros 5 | -------------------------------------------------------------------------------- /test_projects/revenue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/README.md -------------------------------------------------------------------------------- /test_projects/revenue/Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/Taskfile.yml -------------------------------------------------------------------------------- /test_projects/revenue/analyses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/revenue/dbt_loom.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/dbt_loom.config.yml -------------------------------------------------------------------------------- /test_projects/revenue/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/dbt_project.yml -------------------------------------------------------------------------------- /test_projects/revenue/jaffle-data/raw_items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/jaffle-data/raw_items.csv -------------------------------------------------------------------------------- /test_projects/revenue/jaffle-data/raw_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/jaffle-data/raw_orders.csv -------------------------------------------------------------------------------- /test_projects/revenue/jaffle-data/raw_products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/jaffle-data/raw_products.csv -------------------------------------------------------------------------------- /test_projects/revenue/jaffle-data/raw_stores.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/jaffle-data/raw_stores.csv -------------------------------------------------------------------------------- /test_projects/revenue/jaffle-data/raw_supplies.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/jaffle-data/raw_supplies.csv -------------------------------------------------------------------------------- /test_projects/revenue/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/revenue/macros/cents_to_dollars.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/macros/cents_to_dollars.sql -------------------------------------------------------------------------------- /test_projects/revenue/meltano.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/meltano.yml -------------------------------------------------------------------------------- /test_projects/revenue/models/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/groups.yml -------------------------------------------------------------------------------- /test_projects/revenue/models/marts/__models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/marts/__models.yml -------------------------------------------------------------------------------- /test_projects/revenue/models/marts/accounts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/marts/accounts.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/marts/orders_v1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/marts/orders_v1.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/marts/orders_v2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/marts/orders_v2.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/__models.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/__models.yml -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/__sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/__sources.yml -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/stg_accounts.sql: -------------------------------------------------------------------------------- 1 | select * from {{ ref('seed_accounts') }} -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/stg_locations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/stg_locations.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/stg_order_items.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/stg_order_items.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/stg_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/stg_orders.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/stg_products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/stg_products.sql -------------------------------------------------------------------------------- /test_projects/revenue/models/staging/stg_supplies.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/models/staging/stg_supplies.sql -------------------------------------------------------------------------------- /test_projects/revenue/package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/package-lock.yml -------------------------------------------------------------------------------- /test_projects/revenue/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/packages.yml -------------------------------------------------------------------------------- /test_projects/revenue/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/profiles.yml -------------------------------------------------------------------------------- /test_projects/revenue/reports/.evidence/customization/custom-formatting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/.evidence/customization/custom-formatting.json -------------------------------------------------------------------------------- /test_projects/revenue/reports/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/.gitignore -------------------------------------------------------------------------------- /test_projects/revenue/reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/README.md -------------------------------------------------------------------------------- /test_projects/revenue/reports/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/package-lock.json -------------------------------------------------------------------------------- /test_projects/revenue/reports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/package.json -------------------------------------------------------------------------------- /test_projects/revenue/reports/pages/analysis/seasonality-investigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/pages/analysis/seasonality-investigation.md -------------------------------------------------------------------------------- /test_projects/revenue/reports/pages/customers/[customer].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/pages/customers/[customer].md -------------------------------------------------------------------------------- /test_projects/revenue/reports/pages/customers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/pages/customers/index.md -------------------------------------------------------------------------------- /test_projects/revenue/reports/pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/pages/index.md -------------------------------------------------------------------------------- /test_projects/revenue/reports/pages/stores/[city].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/pages/stores/[city].md -------------------------------------------------------------------------------- /test_projects/revenue/reports/pages/stores/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/reports/pages/stores/index.md -------------------------------------------------------------------------------- /test_projects/revenue/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/requirements.txt -------------------------------------------------------------------------------- /test_projects/revenue/seeds/__seeds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/test_projects/revenue/seeds/__seeds.yml -------------------------------------------------------------------------------- /test_projects/revenue/seeds/integers.csv: -------------------------------------------------------------------------------- 1 | id 2 | 1 3 | 2 4 | 3 5 | 4 -------------------------------------------------------------------------------- /test_projects/revenue/seeds/seed_accounts.csv: -------------------------------------------------------------------------------- 1 | name 2 | foo 3 | bar 4 | baz -------------------------------------------------------------------------------- /test_projects/revenue/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_projects/revenue/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_dbt_core_execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/tests/test_dbt_core_execution.py -------------------------------------------------------------------------------- /tests/test_mainfest_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/tests/test_mainfest_node.py -------------------------------------------------------------------------------- /tests/test_manifest_loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/tests/test_manifest_loaders.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasyager/dbt-loom/HEAD/uv.lock --------------------------------------------------------------------------------