Skip to content

quantmew/ripperdoc-docs

Repository files navigation

Ripperdoc Documentation Site

This is the documentation website for Ripperdoc, built with Fumadocs and Next.js.

Development

Prerequisites

  • Node.js 18+ or Bun
  • npm, yarn, pnpm, or bun

Installation

# Install dependencies
npm install
# or
bun install

Running Locally

# Start development server
npm run dev
# or
bun dev

Open http://localhost:3000 to view the site.

Building

npm run build
npm run start

Project Structure

docs-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

Adding Documentation

  1. Create a new .mdx file in content/docs/
  2. Add frontmatter with title and description:
---
title: My Page
description: Page description
---

# Content here
  1. Add the page to content/docs/meta.json for sidebar navigation

Technologies

Deployment

The site can be deployed to any platform that supports Next.js:

  • Vercel
  • Netlify
  • Cloudflare Pages
  • Self-hosted

License

Apache 2.0 - Same as Ripperdoc

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published