Mooncake/docs
zbtrs2 7612314050 [Doc] ollama integration: report, figures and docs wiring
Add the integration README and the technical report (architecture, methodology
and results measured on H200 + Mellanox RDMA), the generated figures and the
Stage-2 microbench log, and wire a new docs example page into the Sphinx
toctree alongside the vLLM / SGLang / LMDeploy integrations.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-23 19:53:09 +08:00
..
source [Doc] ollama integration: report, figures and docs wiring 2026-06-23 19:53:09 +08:00
Makefile [DOC] feat(docs): build documentation website for Mooncake using Sphinx (#354) 2025-05-12 23:33:18 +08:00
README.md [DOC] feat(docs): build documentation website for Mooncake using Sphinx (#354) 2025-05-12 23:33:18 +08:00
make.bat [DOC] feat(docs): build documentation website for Mooncake using Sphinx (#354) 2025-05-12 23:33:18 +08:00

README.md

Mooncake documents

Build the docs

  • Make sure in docs directory
cd docs
  • Install the dependencies:
pip install -r ../requirements_docs.txt
  • Clean the previous build (optional but recommended):
make clean
  • Generate the HTML documentation:
make html

Be sure to set locale right before building.

Open the docs with your browser

  • Serve the documentation locally:
python -m http.server -d build/html/

This will start a local server at http://localhost:8000. You can now open your browser and view the documentation.

If port 8000 is already in use, you can specify a different port, for example:

python -m http.server 3000 -d build/html/