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
| Tool | Version |
|---|---|
| Node.js | 22 or later |
| pnpm | 10.x |
If you do not have pnpm installed, enable it via corepack:
corepack enable
corepack prepare pnpm@latest --activateInstallation
Clone the repository and install dependencies:
git clone <your-repo-url> docsblog-app
cd docsblog-app
pnpm install --frozen-lockfileStart the Development Server
pnpm run devThe 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
- Project Structure -- understand the directory layout
- Configuration -- customize site name, branding, and environment variables
- Content Management -- add blog posts, docs, and social media data
- Deployment -- ship to Cloudflare Workers