mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-15 17:13:12 +00:00
20 lines
319 B
Markdown
20 lines
319 B
Markdown
# OpenCode Desktop
|
|
|
|
The OpenCode Desktop app, built with Electron.
|
|
|
|
## Development
|
|
|
|
```bash
|
|
bun install
|
|
bun dev
|
|
```
|
|
|
|
## Build
|
|
|
|
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/`.
|
|
|
|
```bash
|
|
bun run build && bun run package
|
|
```
|