Getting StartedChapter 2 of 21 min read
Setup & Configuration
How to run and deploy the blog locally
Prerequisites
Make sure you have the following installed:
- Node.js 18+
- pnpm (recommended) or npm
Quick Start
Clone the project
bashgit clone https://github.com/aaronlamz/Weblog.git cd Weblog
Install dependencies
bashpnpm install
Start the dev server
bashpnpm dev
Open your browser and visit http://localhost:3000 to see the blog.
Configuration
Edit src/config/site.config.ts to update your personal info:
typescriptauthor: { name: 'Your Name', email: 'your@email.com', avatar: 'https://your-avatar-url.png', }
Deployment
The project supports deployment to GitHub Pages, Vercel, and more. See the project README for details.
On this page
