Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.07 KB

File metadata and controls

58 lines (40 loc) · 1.07 KB

Invite Tracker Documentation

Documentation for the Invite Tracker Discord bot, built with VitePress.

Prerequisites

  • Node.js 18+
  • pnpm 10.26.1+

Installation

pnpm install

Development

Start the development server with hot-reload:

pnpm docs:dev

The documentation will be available at http://localhost:5173.

Build

Build the documentation for production:

pnpm docs:build

The output will be generated in docs/.vitepress/dist.

Preview

Preview the production build locally:

pnpm docs:preview

Project Structure

documentation/
├── docs/
│   ├── .vitepress/
│   │   └── config.mts      # VitePress configuration
│   ├── assets/             # Images and static assets
│   ├── commands/           # Command documentation
│   ├── dashboard/          # Dashboard plugin documentation
│   ├── faq-directory/      # FAQ pages
│   └── *.md                # Root documentation pages
├── package.json
└── README.md