This commit is contained in:
every_holiday
2026-06-22 22:29:10 +09:00
parent 072e819b0b
commit cbd8911c25
18 changed files with 621 additions and 40 deletions

25
EXE.md Normal file
View File

@@ -0,0 +1,25 @@
# exe Packaging
## Build
```powershell
.\build_exe.ps1
```
This uses `PyInstaller` and writes the result to `dist\vrc_osc\`.
## Distribution Layout
Place these next to `vrc_osc.exe`:
- `config\config.toml`
- `config\secrets.toml`
- `config\guests.txt`
- `runtime\`
`runtime\` is created on startup if it does not exist.
## Notes
- `src\common\project_paths.py` resolves paths relative to the exe when frozen.
- Keep `config\` beside the exe. The app does not look inside the PyInstaller temp directory for persistent files.