Compare Full vs. Minimal Clean Architecture templates
mainChoose your template based on project complexity and team needs:
| Feature | Full Clean Architecture (clean-arch) | Minimal Clean Architecture (min-clean) |
|---|---|---|
| Projects | 4+ (Core, UseCases, Infrastructure, Web) | 1 (Web only) |
| Organization | By layer (horizontal) | By feature (vertical slices) |
| DDD Patterns | Extensive (Aggregates, Value Objects, etc.) | Pragmatic (simplified domain model) |
| Complexity | Higher - more abstractions | Lower - simpler structure |
| Best For | Large enterprise apps, long-term maintenance | MVPs, smaller apps, rapid iteration |
| Team Size | Multiple teams, strict boundaries | Small teams, collaborative |