Files
voicebox/docs/content/docs
Jamie Pine 827ce2bf0a docs: refresh contributor docs and drop root requirements.txt
CONTRIBUTING.md caught up with reality: ruff not Black, Python 3.12,
sh.voicebox.app, the routes/services/backends layout, the actual
pytest + CI story, and a working autoupdater link. SECURITY.md now
says 0.5.x and describes what CI actually enforces. The root
requirements.txt was vestigial (unpinned, included torchvision,
referenced by nothing) — deleted, with two stale doc references
repointed at backend/requirements.txt. backend/pyproject.toml is now
covered by bumpversion; its version was stuck at 0.2.3 and is synced
to 0.5.0.
2026-07-26 23:17:34 -07:00
..

title, description
title description
Documentation README Voicebox documentation development guide

This directory contains the documentation for Voicebox, built with Fumadocs.

Development

Running Locally

From the docs/ directory:

bun install
bun run dev

The docs will be available at http://localhost:3000.

Structure

  • content/docs/overview/ — user-facing guides (installation, quick start, feature walkthroughs)
  • content/docs/developer/ — architecture, backend internals, and contributor guides
  • content/docs/api-reference/ — auto-generated from the backend's OpenAPI schema
  • content/docs/index.mdx — landing page
  • public/ — static assets (images, screenshots, videos)

Writing Docs

  • Use .mdx files for all documentation pages
  • Navigation is generated from content/docs/meta.json files
  • Fumadocs components available: Callout, Cards / Card, Tabs / Tab, Steps / Step, Accordion / AccordionGroup, Files / Folder / File
  • API reference pages under api-reference/ are regenerated from the backend's OpenAPI schema — don't edit them by hand

Deployment

Docs are automatically deployed when changes land on main.