This guide explains how to build and deploy the Kodosumi documentation using Mintlify.

Prerequisites

Before building the documentation, ensure you have the following installed:

Installation

Install Mintlify globally:
npm install -g mintlify

Local Development

To run the documentation locally for development:
# Navigate to the docs directory
cd docs

# Start the development server
mintlify dev
The documentation will be available at http://localhost:3000.

Building for Production

To build the documentation for production deployment:
# Navigate to the docs directory
cd docs

# Build the documentation
mintlify build
This will generate a production-ready build in the .mintlify directory.

Getting Help