This repository contains the documentation website for the NestJS Starter Kit, built with Docusaurus 2, a modern static website generator.
- Comprehensive documentation for the NestJS Starter Kit
- Interactive examples and code blocks
- Mobile-responsive design
- Dark mode support
- Full-text search
- Node.js (v14 or later)
- npm or yarn
# Clone the repository
git clone https://github.com/yourusername/nest-starter-kit-doc.git
cd nest-starter-kit-doc
# Install dependencies
npm install# Start the development server
npm startThis command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
# Build the static site
npm run buildThis command generates static content into the build directory and can be served using any static hosting service.
# Serve the built website locally
npm run servenest-starter-kit-doc/
├── docs/ # Documentation markdown files
│ ├── introduction.md # Root documentation page
│ └── ...
├── src/
│ ├── css/ # Global CSS customizations
│ └── pages/ # Custom React pages
├── static/ # Static assets like images
├── docusaurus.config.js # Main configuration
├── sidebars.js # Sidebar configuration
└── package.json # Dependencies and scripts
Contributions are welcome! If you'd like to help improve the documentation:
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-improvement) - Commit your changes (
git commit -m 'Add some amazing improvement') - Push to the branch (
git push origin feature/amazing-improvement) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- NestJS Starter Kit - The main project this documentation covers