You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -55,9 +56,12 @@ Follow the [Lemonade Server installation guide](https://github.com/lemonade-sdk/
55
56
### Development Mode
56
57
57
58
```bash
58
-
#Start the development server (React + Electron)
59
+
#Windows / macOS
59
60
npm run dev
60
61
62
+
# Linux / Ubuntu
63
+
npm run dev:linux
64
+
61
65
# In a separate terminal, ensure Lemonade Server is running
62
66
lemonade-server
63
67
```
@@ -194,6 +198,14 @@ interviewer/
194
198
└─────────────────┘
195
199
```
196
200
201
+
## Linux / Ubuntu Notes
202
+
203
+
The app runs on Ubuntu out of the box. A few things to be aware of:
204
+
205
+
- Use `npm run dev:linux` instead of `npm run dev` — this passes the required `--no-sandbox` flag to Electron, bypassing the SUID sandbox requirement that causes a crash on most Linux setups.
206
+
- The default model (`Qwen3-Coder-30B-A3B-Instruct-GGUF`) is set automatically. If you previously ran an older version that saved a different model name (e.g. `gpt-oss-mxp4`), the app will auto-correct it on next startup.
207
+
- For packaged AppImage builds, no extra flags are needed — the sandbox is handled at the app level.
0 commit comments