DocsBlogDocsBlog
Log in

Set up and run the docsblog-app template locally in minutes.

Getting Started

This guide walks you through cloning, installing, and running the docsblog-app template on your local machine.

Prerequisites

ToolVersion
Node.js22 or later
pnpm10.x

If you do not have pnpm installed, enable it via corepack:

corepack enable
corepack prepare pnpm@latest --activate

Installation

Clone the repository and install dependencies:

git clone <your-repo-url> docsblog-app
cd docsblog-app
pnpm install --frozen-lockfile

Start the Development Server

pnpm run dev

The app starts on port 3005 by default. Open http://localhost:3005 in your browser.

First Visit Notes

  • The default language is English. English pages are served without a locale prefix (e.g. /blog, /docs).
  • To view the Chinese (Simplified) version, navigate to /zh-hans/ (e.g. /zh-hans/blog).
  • In development mode, an Admin link appears automatically in the top navigation bar. Use it to manage blog posts, categories, translations, and more. See the Admin Panel section for details.

Next Steps