Files
godot-contributing-docs/README.md
2025-07-31 14:03:00 +02:00

21 lines
255 B
Markdown

# Godot Engine Contributing documentation
WIP Repository
## Setup
```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
```
## Serve
```bash
source .venv/bin/activate
make html
cd build/html
python -m http.server
```