vibora 4.6.0 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +35 -14
- package/dist/assets/{index-D9hu2Hyr.js → index-BHItdbV8.js} +108 -105
- package/dist/assets/index-uq7fsilP.css +1 -0
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/server/index.js +165 -22
- package/dist/assets/index-CVgbBi7w.css +0 -1
package/README.md
CHANGED
|
@@ -172,18 +172,40 @@ For Claude Desktop, add to your `claude_desktop_config.json`:
|
|
|
172
172
|
|
|
173
173
|
Run the backend on a remote server and connect from anywhere. Launch tasks, close your laptop, and your agents keep working. As AI becomes more capable of autonomous work, this becomes essential.
|
|
174
174
|
|
|
175
|
-
|
|
176
|
-
- **Tailscale** — Works with both web and desktop app. No CORS configuration needed.
|
|
177
|
-
- **Cloudflare Tunnels** — Alternative for web-only usage. Note: Desktop app has CORS limitations with Cloudflare Tunnels.
|
|
175
|
+
### Desktop App: SSH Port Forwarding (Recommended)
|
|
178
176
|
|
|
179
|
-
|
|
177
|
+
The desktop app connects to `localhost:7777`. Use SSH port forwarding to tunnel to your remote server:
|
|
178
|
+
|
|
179
|
+
```bash
|
|
180
|
+
# Forward local port 7777 to remote server's port 7777
|
|
181
|
+
ssh -L 7777:localhost:7777 your-server
|
|
182
|
+
|
|
183
|
+
# Or run in background with keep-alive
|
|
184
|
+
ssh -fN -o ServerAliveInterval=30 -o ServerAliveCountMax=3 -L 7777:localhost:7777 your-server
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
On the remote server, start Vibora:
|
|
188
|
+
```bash
|
|
189
|
+
npx vibora@latest up
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
The desktop app will connect through the tunnel automatically. This approach is:
|
|
193
|
+
- **Secure** — Backend stays bound to localhost, no exposed ports
|
|
194
|
+
- **Performant** — Direct SSH connection, lower latency than overlay networks
|
|
195
|
+
- **Simple** — No additional configuration needed
|
|
196
|
+
|
|
197
|
+
For persistent tunnels on macOS, use a launchd agent. See [this guide](https://gist.github.com/knowsuchagency/60656087903cd56d3a9b5d1d5c803186).
|
|
198
|
+
|
|
199
|
+
### Browser: Tailscale or Cloudflare Tunnels
|
|
200
|
+
|
|
201
|
+
For browser-only access, you can use Tailscale or Cloudflare Tunnels to expose your server:
|
|
202
|
+
|
|
203
|
+
1. **On the remote server:**
|
|
180
204
|
```bash
|
|
181
205
|
npx vibora@latest up
|
|
182
206
|
```
|
|
183
207
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
4. **Or access via browser** — Open the tunnel URL in your browser
|
|
208
|
+
2. **Access via browser** — Open the tunnel URL (e.g., `http://your-server.tailnet.ts.net:7777`)
|
|
187
209
|
|
|
188
210
|
<details>
|
|
189
211
|
<summary><strong>Configuration</strong></summary>
|
|
@@ -196,13 +218,12 @@ Settings are stored in `.vibora/settings.json`. The vibora directory is resolved
|
|
|
196
218
|
|
|
197
219
|
| Setting | Env Var | Default |
|
|
198
220
|
|---------|---------|---------|
|
|
199
|
-
| port | `PORT` | 7777 |
|
|
200
|
-
| defaultGitReposDir | `VIBORA_GIT_REPOS_DIR` | ~ |
|
|
201
|
-
|
|
|
202
|
-
|
|
|
203
|
-
|
|
|
204
|
-
|
|
|
205
|
-
| language | — | null (auto-detect) |
|
|
221
|
+
| server.port | `PORT` | 7777 |
|
|
222
|
+
| paths.defaultGitReposDir | `VIBORA_GIT_REPOS_DIR` | ~ |
|
|
223
|
+
| editor.sshPort | `VIBORA_SSH_PORT` | 22 |
|
|
224
|
+
| integrations.linearApiKey | `LINEAR_API_KEY` | null |
|
|
225
|
+
| integrations.githubPat | `GITHUB_PAT` | null |
|
|
226
|
+
| appearance.language | — | null (auto-detect) |
|
|
206
227
|
|
|
207
228
|
Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI or CLI.
|
|
208
229
|
|