ARCHE
FamiliesDocsExamplesBlogGitHub ↗
Documentation

Start

  • Getting started
  • Philosophy

Guides

  • First hour
  • Agent context
  • Verification
  • Package managers
  • Scaffold lifecycle
  • Showcase & portfolio

Walkthroughs

  • TypeScript fullstack
  • Convex product
  • Rust API & fullstack
  • Solana family
  • Customize & experiments
  • Automation (JSON/MCP)

CLI

  • Overview
  • Flags
  • Subcommands
  • Generated output

Presets

  • Preset catalog

Stack

  • TypeScript architecture
  • Convex
  • Rust
  • Solana
  • Authentication
  • Prisma store
  • tRPC

Operations

  • Deployment
  • Environment variables
  • Workers & queues
  • CI & testing
  • Scaling
  • Security
  • Troubleshooting

Reference

  • Stack links
  • Capabilities
  • This source repo
  • Code examples
← Documentation

This source repository

Commands for developing the Arche template monorepo—not your generated app.

1 min read

If you cloned this repository to work on Arche itself, these commands apply. They are not automatically copied into every generated preset.

This source template

Commands for developing the Arche template monorepo itself—not every generated app.

$bun dev
Start all workspaces in this template monorepo.
$bun run build
Production build for this template monorepo.
$bun run verify:generated
Run generated-project verification matrix cases.
$bun run repo:doctor
Audit this source repo health and stale scaffolding.

Health check

terminal
bun run repo:doctor

Audits repo hygiene and stale scaffolding references—run after large doc or CLI changes.

CLI development

terminal
bun run dev:cli -- my-app --yes --preset=typescript-fullstack --dir=../projects

Runs the CLI from apps/cli without publishing to npm.

Verify generated output (maintainers)

terminal
bun run verify:generated -- --preset=typescript-fullstack,rust-api --run=structure

See apps/cli tests and .docs/product/verification-matrix.md for harness details.

Web app (this site)

terminal
bun dev --filter=@arche-template/web

Docs content lives in apps/web/content/docs (Fumadocs MDX). After editing MDX:

terminal
cd apps/web && bun run mdx:generate