Getting Started (V1)
Note: V1 is legacy. For new projects, we recommend using V2.
This is the V1 getting started guide. V1 documentation is preserved for legacy projects.
V1 vs V2
| Feature | V1 | V2 |
|---|---|---|
| Structure | Single-app or monorepo | Monorepo only |
| Genome Format | Genome (modules array) | V2Genome (packages/apps) |
| Marketplace | Agnostic | Opinionated + Agnostic |
| Framework Handling | Mixed with modules | Bootstrap first |
Quick Start (V1)
V1 uses a simpler genome format:
export default {
project: {
name: 'my-app',
structure: 'monorepo' // or 'single-app'
},
modules: [
{ id: 'capabilities/nextjs' },
{ id: 'capabilities/auth' }
]
};Migration to V2
If you're using V1, see the V2 Migration Guide to upgrade.
New to Architech? → V2 Getting Started
Using V1? → Continue with V1 documentation (legacy)