Key Concepts
Understand template's structure
Code Structure
📁
├── 📁 pipelines/ # Data pipelines:
│ ├── 📁 ingest/ # Data ingestion layer
│ ├── 📁 transform/ # Data transformation layer
│ └── 📁 orchestrate/ # Workflow orchestration layer
│
├── 📁 base/ # Cloud infrastructure
│ ├── 📁 aws/ # Cloud provider resources (VPC, IAM, etc.)
│ └── 📁 snowflake/ # Data warehouse resources
│
└── 📁 live/ # Environment-specific deployment configurationData Flow
Data Pipeline Architecture
1. Data Ingestion Layer
2. Data Transformation Layer
Transformation: dbt3. Workflow Orchestration Layer

Deployment

Makefile
Last updated