Files
awesome-docs/docs/guide/installation.md
sven 872b3e7404 Setup VitePress documentation with pnpm
- Added VitePress as dev dependency
- Created docs directory structure
- Configured VitePress with navigation and sidebar
- Added example pages (home, guide, installation)
- Updated package.json with docs scripts
- Added VitePress-specific entries to .gitignore
- Created setup documentation
2025-11-01 09:36:55 +01:00

1001 B

Installation

Learn how to install and set up this documentation site.

Prerequisites

Before you begin, ensure you have the following installed:

Installation Steps

  1. Clone the repository

    git clone https://github.com/testthedocs/awesome-docs.git
    cd awesome-docs
    
  2. Install dependencies

    pnpm install
    
  3. Start the development server

    pnpm docs:dev
    
  4. Build for production

    pnpm docs:build
    

Verification

After installation, you should be able to access the documentation at http://localhost:5173 when running the development server.

Troubleshooting

If you encounter issues:

  • Ensure you're using Node.js version 16 or higher
  • Clear the node_modules and try reinstalling: rm -rf node_modules pnpm-lock.yaml && pnpm install
  • Check that all dependencies are properly installed