Setup

Getting Started

Learn how the two Nuxt apps share one Markdown content tree.

Getting Started

This workspace contains two Nuxt applications:

  • apps/docs: the public documentation site.
  • apps/admin: the document management console.
  • content/docs: the shared Markdown content tree.

Local development

pnpm install
pnpm dev:docs
pnpm dev:admin

Default ports:

  • docs site: http://localhost:3000
  • admin app: http://localhost:3001

Content flow

  1. Edit or create Markdown content in the admin app.
  2. The admin app writes files into content/docs.
  3. The docs site reads the same files and renders them as pages.