Vypher Docs
This directory contains the source for the Vypher documentation site, built with VitePress and deployed to docs.vypher.io.
Structure
docs/
├── .vitepress/
│ └── config.mts # VitePress site config
├── cli/
│ ├── vypher.md # Auto-generated: vypher root command reference
│ └── vypher_scan.md # Auto-generated: vypher scan command reference
├── installation.md # Installation guide
└── index.md # Home pageNote: Files in
cli/are auto-generated bytools/docgen. Do not edit them directly; run the generator instead:bashcd ../cli go run ./tools/docgen ../docs
Local Development
bash
npm install
npm run docs:devThe site will be available at http://localhost:5173.
Build
bash
npm run docs:buildOutput is written to .vitepress/dist/.
Preview Production Build
bash
npm run docs:preview