This repository contains the official documentation for NpgsqlRest, built with VitePress.
- Node.js 18+
- npm or yarn
-
Clone this repository
-
Install dependencies:
npm install
-
Start the development server:
npm run docs:dev
-
Open your browser to
http://localhost:5173
To build the documentation for production:
npm run docs:build
The built files will be in the docs/.vitepress/dist
directory.
To preview the production build locally:
npm run docs:preview
docs/
├── .vitepress/
│ └── config.ts # VitePress configuration
├── guide/ # User guide
│ ├── index.md # Getting started
│ └── quick-start.md # Quick start guide
├── api/ # API reference
│ └── index.md # API documentation
├── examples/ # Examples
│ └── index.md # Example gallery
└── index.md # Home page
Contributions to the documentation are welcome! Please:
- Fork this repository
- Create a feature branch
- Make your changes
- Submit a pull request
For major changes, please open an issue first to discuss what you would like to change.
This documentation is licensed under the MIT License - see the LICENSE file for details.