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
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,21 @@ cursor-chat-browser-python/
160
160
└── workspace.html
161
161
```
162
162
163
+
## Desktop App (Windows .exe)
164
+
165
+
You can package the browser as a standalone desktop application with its own window - no Python installation required on the target machine.
166
+
167
+
### Build
168
+
169
+
```bash
170
+
pip install pywebview pyinstaller
171
+
pyinstaller cursor-browser.spec
172
+
```
173
+
174
+
This produces `dist/CursorChatBrowser/` containing `CursorChatBrowser.exe` and its supporting files. Move the folder anywhere you like, then pin the `.exe` to Start or the taskbar.
175
+
176
+
The desktop app uses [pywebview](https://pywebview.flowrl.com/) to render the Flask UI inside a native window via Edge WebView2 (pre-installed on Windows 10/11). No HTTP server or port is opened - pywebview calls the WSGI app directly in-process.
0 commit comments