mirror of
https://github.com/godotengine/godot-contributing-docs.git
synced 2025-12-31 05:48:13 +03:00
20 lines
209 B
Markdown
20 lines
209 B
Markdown
# Godot Engine Contributing documentation
|
|
|
|
WIP Repository
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
python -m venv .venv
|
|
source .venv/bin/activate
|
|
pip install
|
|
```
|
|
|
|
## Serve
|
|
|
|
```bash
|
|
make html
|
|
cd build/html
|
|
python -m http.server
|
|
```
|