v1
Getting Started

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

FeatureV1V2
StructureSingle-app or monorepoMonorepo only
Genome FormatGenome (modules array)V2Genome (packages/apps)
MarketplaceAgnosticOpinionated + Agnostic
Framework HandlingMixed with modulesBootstrap 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)