# Getting Started ## Quick Start in 5 Minutes ### 1. Install Dependencies ```bash pip install -r requirements.txt ``` ### 2. Build the Documentation **Windows:** ```bash make.bat html ``` **Linux/macOS:** ```bash make html ``` ### 3. View the Documentation Open `build/html/index.html` in your browser. Or use Python's built-in server: ```bash python -m http.server 8000 --directory build/html ``` Then visit: http://localhost:8000 ## What's Next? - Read the [Installation Guide](installation.md) for detailed setup instructions - Check [Building Documentation](building.md) to build specific language versions - Explore [Deployment](deployment.md) options for production use ## Key Files | File | Purpose | |------|---------| | `requirements.txt` | Python dependencies | | `Makefile` (Linux/macOS) | Build commands | | `make.bat` (Windows) | Build commands for Windows | | `source/conf.py` | Sphinx configuration | | `source/index.rst` | Main documentation index |