Quick Start: Kassie Documentation
Install and Preview
bash
# Install dependencies
cd docs
npm install
# Start development server
npm run devVisit http://localhost:5173 to preview the documentation.
Deploy to GitHub Pages
1. Enable GitHub Pages
- Go to repo Settings > Pages
- Set Source to "GitHub Actions"
2. Push to Main
bash
git add .
git commit -m "docs: add VitePress documentation"
git push origin mainThe workflow will automatically build and deploy.
3. Access
Docs will be available at: https://<username>.github.io/kassie/
Update Base URL (if needed)
If your repo name is not "kassie", update .vitepress/config.ts:
typescript
export default defineConfig({
base: '/your-repo-name/',
// ...
})Commands
bash
npm run dev # Start dev server
npm run build # Build for production
npm run preview # Preview production buildNext Steps
- Add screenshots to
docs/public/screenshots/ - Replace logo at
docs/public/logo.svg - Expand architecture/development/examples sections
- Add actual product screenshots
See DOCS_SETUP_COMPLETE.md for detailed information.