This is the documentation website for Ripperdoc, built with Fumadocs and Next.js.
- Node.js 18+ or Bun
- npm, yarn, pnpm, or bun
# Install dependencies
npm install
# or
bun install# Start development server
npm run dev
# or
bun devOpen http://localhost:3000 to view the site.
npm run build
npm run startdocs-site/
├── content/
│ └── docs/ # MDX documentation files
│ ├── meta.json # Sidebar navigation config
│ └── *.mdx # Documentation pages
├── src/
│ ├── app/ # Next.js app router
│ ├── components/ # React components
│ └── lib/ # Utility functions
├── public/ # Static assets
└── package.json
- Create a new
.mdxfile incontent/docs/ - Add frontmatter with title and description:
---
title: My Page
description: Page description
---
# Content here- Add the page to
content/docs/meta.jsonfor sidebar navigation
- Next.js - React framework
- Fumadocs - Documentation framework
- Tailwind CSS - Styling
- MDX - Markdown with JSX
The site can be deployed to any platform that supports Next.js:
- Vercel
- Netlify
- Cloudflare Pages
- Self-hosted
Apache 2.0 - Same as Ripperdoc