├── .devcontainer.json ├── .github ├── CODEOWNERS └── workflows │ └── validate_on_platforms.yml ├── .gitignore ├── .sqlfluff ├── .sqlfluffignore ├── .vscode └── extensions.json ├── Dockerfile ├── LICENSE ├── README.md ├── RELEASE.md ├── dbt-completion.bash ├── dbt_project.yml ├── etc ├── dbdiagram_definition.txt └── jaffle_shop_erd.png ├── images ├── dbt_full_deploy_commands.png ├── dbt_performance.png └── open_in_codespaces.png ├── models ├── customers.sql ├── docs.md ├── orders.sql ├── overview.md ├── schema.yml └── staging │ ├── schema.yml │ ├── stg_customers.sql │ ├── stg_orders.sql │ └── stg_payments.sql ├── profiles.yml ├── requirements-dev.txt ├── requirements.in ├── requirements.txt └── seeds ├── .gitkeep ├── raw_customers.csv ├── raw_orders.csv └── raw_payments.csv /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @dbt-labs/dx 2 | -------------------------------------------------------------------------------- /.github/workflows/validate_on_platforms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/.github/workflows/validate_on_platforms.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.sqlfluff: -------------------------------------------------------------------------------- 1 | [sqlfluff] 2 | 3 | dialect = duckdb 4 | -------------------------------------------------------------------------------- /.sqlfluffignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/RELEASE.md -------------------------------------------------------------------------------- /dbt-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/dbt-completion.bash -------------------------------------------------------------------------------- /dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/dbt_project.yml -------------------------------------------------------------------------------- /etc/dbdiagram_definition.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/etc/dbdiagram_definition.txt -------------------------------------------------------------------------------- /etc/jaffle_shop_erd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/etc/jaffle_shop_erd.png -------------------------------------------------------------------------------- /images/dbt_full_deploy_commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/images/dbt_full_deploy_commands.png -------------------------------------------------------------------------------- /images/dbt_performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/images/dbt_performance.png -------------------------------------------------------------------------------- /images/open_in_codespaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/images/open_in_codespaces.png -------------------------------------------------------------------------------- /models/customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/customers.sql -------------------------------------------------------------------------------- /models/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/docs.md -------------------------------------------------------------------------------- /models/orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/orders.sql -------------------------------------------------------------------------------- /models/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/overview.md -------------------------------------------------------------------------------- /models/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/schema.yml -------------------------------------------------------------------------------- /models/staging/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/staging/schema.yml -------------------------------------------------------------------------------- /models/staging/stg_customers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/staging/stg_customers.sql -------------------------------------------------------------------------------- /models/staging/stg_orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/staging/stg_orders.sql -------------------------------------------------------------------------------- /models/staging/stg_payments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/models/staging/stg_payments.sql -------------------------------------------------------------------------------- /profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/profiles.yml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pip-tools 2 | -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/requirements.txt -------------------------------------------------------------------------------- /seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seeds/raw_customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/seeds/raw_customers.csv -------------------------------------------------------------------------------- /seeds/raw_orders.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/seeds/raw_orders.csv -------------------------------------------------------------------------------- /seeds/raw_payments.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbt-labs/jaffle_shop_duckdb/HEAD/seeds/raw_payments.csv --------------------------------------------------------------------------------