opencode/packages/desktop/README.md

20 lines
319 B
Markdown
Raw Permalink Normal View History

2026-01-07 03:07:20 +08:00
# OpenCode Desktop
2025-11-22 13:15:01 +08:00
The OpenCode Desktop app, built with Electron.
2025-11-22 13:15:01 +08:00
2026-01-07 03:07:20 +08:00
## Development
2025-11-22 13:15:01 +08:00
2026-01-07 03:07:20 +08:00
```bash
bun install
bun dev
2026-01-07 03:07:20 +08:00
```
## Build
2026-01-07 03:07:20 +08:00
Run the `build` script to build the app's JS assets, then `package` to
bundle the assets as an application. The resulting app will be in `dist/`.
2026-01-07 03:07:20 +08:00
```bash
bun run build && bun run package
2026-01-07 03:07:20 +08:00
```