Installation
Welcome! This guide walks you through installing Knowledge Core.
Prerequisites
Before you begin, make sure you have the following installed:
- Node.js 24 or higher
- pnpm 9 or higher
- Volta (recommended for version management)
Tip
Volta automatically manages the correct Node and pnpm versions for this project.
Installing Volta
If you haven’t installed Volta yet:
curl https://get.volta.sh | bash
After installation, Volta will automatically use the correct versions.
Using the Template
Option 1: GitHub Template
- Click “Use this template” on GitHub
- Clone your new repository
- Install dependencies:
pnpm install
Option 2: Manual Clone
git clone https://github.com/yourusername/knowledge-core.git
cd knowledge-core
pnpm install
Starting the Project
Start Documentation
pnpm dev:docs
The documentation will run at http://localhost:4321
Start Course Platform
pnpm dev:courses
The course platform runs at http://localhost:4322
Both Apps Simultaneously
pnpm dev
Done!
Your project is now running locally. Open your browser and start developing.