{
  "slug": "quick-start",
  "title": "Quick Start",
  "description": "Scaffold a new project and have a CMS-powered site running in under 5 minutes.",
  "category": "getting-started",
  "order": 1,
  "locale": "en",
  "translationGroup": "f43819ce-5574-4ee3-bbfd-80c3236ea41c",
  "helpCardId": null,
  "content": "## Create a new project\n\n{{snippet:create-project}}\n\nThis generates:\n\n```\nmy-site/\n  cms.config.ts          # Collection + field definitions\n  package.json           # Dependencies\n  .env                   # AI provider keys\n  content/\n    posts/\n      hello-world.json   # Example document\n```\n\n## Install and run\n\n{{snippet:dev-and-build}}\n\nThe dev server starts at `http://localhost:3000` and the admin UI opens automatically.\n\n## Create content\n\nOpen the admin UI and create your first document. It will be saved as a JSON file in `content/posts/`.\n\nEvery document follows this structure:\n\n```json\n{\n  \"slug\": \"my-first-post\",\n  \"status\": \"published\",\n  \"data\": {\n    \"title\": \"My First Post\",\n    \"content\": \"Hello, world!\"\n  },\n  \"id\": \"unique-id\",\n  \"_fieldMeta\": {}\n}\n```\n\n## Build for production\n\n```bash\nnpx cms build     # Build static site\nnpx cms serve     # Preview the build locally\n```\n\nThe build pipeline generates:\n- HTML pages for all published documents\n- `sitemap.xml` for search engines\n- `robots.txt` with AI crawler rules\n- `llms.txt` and `llms-full.txt` for AI discovery\n- `feed.xml` RSS feed\n- Per-page `.md` files for AI consumption\n\n## Next steps\n\n- [Configuration Reference](/docs/config-reference) — define your own collections\n- [Field Types](/docs/field-types) — explore all available field types\n- [Storage Adapters](/docs/storage-adapters) — choose where content is stored\n- [Deployment](/docs/deployment) — deploy to Vercel, Fly.io, or Netlify",
  "excerpt": "Create a new project\n\n{{snippet:create-project}}\n\nThis generates:\n\n\nmy-site/\n  cms.config.ts           Collection + field definitions\n  package.json            Dependencies\n  .env                    AI provider keys\n  content/\n    posts/\n      hello-world.json    Example document\n\n\n Install and run\n",
  "seo": {
    "metaTitle": "Quick Start — webhouse.app Docs",
    "metaDescription": "Scaffold a new project and have a CMS-powered site running in under 5 minutes.",
    "keywords": [
      "webhouse",
      "cms",
      "documentation",
      "getting-started"
    ]
  },
  "createdAt": "2026-03-29T21:41:59.068Z",
  "updatedAt": "2026-03-30T12:04:35.754Z"
}