Some checks failed
CI / lint-and-test (pull_request) Has been cancelled
- Rename dbt project from toronto_housing to portfolio - Restructure dbt models into domain subdirectories: - shared/ for cross-domain dimensions (dim_time) - staging/toronto/, intermediate/toronto/, marts/toronto/ - Update SQLAlchemy models for raw_toronto schema - Add explicit cross-schema FK relationships for FactRentals - Namespace figure factories under figures/toronto/ - Namespace notebooks under notebooks/toronto/ - Update Makefile with domain-specific targets and env loading - Update all documentation for multi-dashboard structure This enables adding new dashboard projects (e.g., /football, /energy) without structural conflicts or naming collisions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
34 lines
590 B
YAML
34 lines
590 B
YAML
name: 'portfolio'
|
|
config-version: 2
|
|
|
|
profile: 'portfolio'
|
|
|
|
model-paths: ["models"]
|
|
analysis-paths: ["analyses"]
|
|
test-paths: ["tests"]
|
|
seed-paths: ["seeds"]
|
|
macro-paths: ["macros"]
|
|
snapshot-paths: ["snapshots"]
|
|
|
|
clean-targets:
|
|
- "target"
|
|
- "dbt_packages"
|
|
|
|
models:
|
|
portfolio:
|
|
shared:
|
|
+materialized: view
|
|
+schema: shared
|
|
staging:
|
|
toronto:
|
|
+materialized: view
|
|
+schema: staging
|
|
intermediate:
|
|
toronto:
|
|
+materialized: view
|
|
+schema: intermediate
|
|
marts:
|
|
toronto:
|
|
+materialized: table
|
|
+schema: marts
|