Documentation site for Testo - Modern PHP Testing Framework.
Built with VitePress.
# Install dependencies
npm install
# Start dev server
npm run dev
# Build for production
npm run build
# Preview production build
npm run previewDev server runs at http://localhost:5173/
/
├── .vitepress/
│ └── config.mts # VitePress configuration
├── docs/ # Documentation (English)
├── blog/ # Blog articles (English)
├── ru/
│ ├── docs/ # Documentation (Russian)
│ └── blog/ # Blog articles (Russian)
├── index.md # Landing page (English)
├── ru/index.md # Landing page (Russian)
└── public/ # Static assets (logo, images)
- Create
docs/my-page.mdandru/docs/my-page.md - Add to sidebar in
.vitepress/config.mts
- Create
blog/my-post.mdandru/blog/my-post.md - Add link to
blog/index.mdandru/blog/index.md
npm run buildOutput is in .vitepress/dist/ - deploy to any static hosting.