Add README

This commit is contained in:
Julien Valverdé
2026-09-10 03:17:33 +02:00
parent 1482e9042c
commit 7d3d10f5e5
+19
View File
@@ -0,0 +1,19 @@
# effect-godot (monorepo)
Bun workspace monorepo.
```
packages/
effect-godot/ the library — see packages/effect-godot/README.md
game/ example Godot project consuming it
godot-bin/ CLI (`godot-bin`) for fetching/running the pinned GodotJS engine build
```
## Quickstart
```sh
bun install
bun run --cwd packages/game godot:fetch # downloads the GodotJS engine build pinned in packages/game/godot.config.json
bun run --cwd packages/game build # bundles packages/game/src/**/*.ts to CJS via rolldown
bun run --cwd packages/game edit # opens the project in the Godot editor
```