-
Notifications
You must be signed in to change notification settings - Fork 159
DESKTOP
vharkins edited this page May 3, 2026
·
1 revision
FireForm is available as a native desktop application powered by Electron. It wraps the existing web frontend — no separate codebase, no framework migration.
Grab the latest installer from the Releases page:
| Platform | Format | File |
|---|---|---|
| macOS | DMG | FireForm-x.x.x-arm64.dmg |
| Windows | NSIS installer | FireForm Setup x.x.x.exe |
| Linux | AppImage | FireForm-x.x.x.AppImage |
cd frontend
npm install # one-time
npm start # opens the desktop windowNote: The backend (FastAPI + Ollama) must be running separately. See DEPLOYMENT or run
make fireform.
The desktop app is intentionally minimal:
frontend/
├── index.html ← existing UI (unchanged)
├── app.js ← existing logic (unchanged)
├── styles.css ← existing styles (unchanged)
├── electron.js ← Electron main process (~25 lines)
├── preload.js ← placeholder for future Node.js bridges
└── package.json ← Electron + electron-builder config
-
electron.jscreates aBrowserWindowand loadsindex.html. That's it. -
preload.jsis empty — ready for future use if Node.js APIs need to be exposed to the renderer. -
package.jsoncontainselectron-builderconfiguration for packaging installers.
Releases are built automatically by GitHub Actions. Pushing a version tag triggers the pipeline:
git tag v1.0.0
git push origin v1.0.0The release.yml workflow:
- Runs on macOS, Windows, and Ubuntu runners in parallel.
- Installs dependencies with
npm ci. - Builds installers with
electron-builder. - Uploads artifacts to a GitHub Release matching the tag.
No secrets need to be configured — GITHUB_TOKEN is provided automatically.