bb9ef4f77e
Created a desktop app using Walis framework. This embeds the frontend and backend into one binary that shows itself on a desktop
24 lines
580 B
Markdown
24 lines
580 B
Markdown
# Desktop App for BaMoRT
|
|
|
|
To use it as a local Desktop App we packaged it into Wails.
|
|
Frontend and Backend are still the same code but the database, for now, is limited to SQLite
|
|
|
|
# How to build
|
|
preinstall
|
|
in Debian 13
|
|
|
|
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev
|
|
|
|
## Install Wails CLI once
|
|
|
|
go install github.com/wailsapp/wails/v2/cmd/wails@latest
|
|
|
|
## Development (Wails proxies the Vite dev server, run Vite separately first)
|
|
|
|
cd desktop && wails dev
|
|
|
|
## Production desktop binary
|
|
|
|
cd desktop && wails build
|
|
|
|
## Output: desktop/build/bin/bamort |