{
  "id": "bare",
  "displayName": "Bare",
  "summary": "Native Node + pnpm only. No containers, no orchestration. You bring your own Postgres (host install, cloud provider, or external Docker).",
  "tags": ["native", "minimal", "starter"],
  "recommendedFor": "Solo devs, prototyping, environments where Docker is unavailable or undesired.",
  "tradeoffs": {
    "pros": [
      "Fastest HMR — native fs.watch (<50ms)",
      "Lowest memory overhead",
      "Native TypeScript LSP + debugger",
      "No image-build step"
    ],
    "cons": [
      "Postgres setup is your problem (brew/apt/docker-on-the-side)",
      "Onboarding new devs requires per-dev environment setup",
      "Deploy story = whatever you build (systemd? PM2? rolling-yours?)"
    ]
  },
  "files": [
    ".env.example",
    "deploy/README.md",
    "deploy/voltro.service.example"
  ],
  "packageJsonScripts": {
    "dev":       "pnpm -r --parallel dev",
    "build":     "pnpm -r build",
    "test":      "pnpm -r test",
    "typecheck": "pnpm -r typecheck"
  }
}
