this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: add Tailscale access instructions for Letta

- Add comment to docker-compose.yml documenting Tailscale access
- Add "Letta Access via Tailscale" section to DEPLOY.md
- Include Letta ADE connection instructions and API examples
- Update architecture diagram to show Letta's Tailscale access

๐Ÿค– Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice 780d5ce6 b261a478

+43 -2
+40 -2
DEPLOY.md
··· 252 252 253 253 --- 254 254 255 + ## Letta Access via Tailscale 256 + 257 + Letta is accessible via Tailscale for direct API access and debugging. 258 + 259 + ### Access Letta 260 + 261 + From any device on your Tailscale network, open: 262 + ``` 263 + http://YOUR_TAILSCALE_IP:8283 264 + ``` 265 + 266 + Or use the Tailscale hostname: 267 + ``` 268 + http://assistant:8283 269 + ``` 270 + 271 + ### Letta ADE (Web UI) 272 + 273 + You can also connect to Letta using the official ADE (Agent Development Environment): 274 + 275 + - Go to https://app.letta.com 276 + - Click "Self-Hosted Server" 277 + - Enter: `http://YOUR_TAILSCALE_IP:8283` 278 + - If `LETTA_SERVER_PASSWORD` is set, enter the password 279 + 280 + ### API Examples 281 + 282 + ```bash 283 + # Health check 284 + curl http://YOUR_TAILSCALE_IP:8283/v1/health 285 + 286 + # List agents (with password) 287 + curl -H "Authorization: Bearer YOUR_LETTA_SERVER_PASSWORD" \ 288 + http://YOUR_TAILSCALE_IP:8283/v1/agents 289 + ``` 290 + 291 + --- 292 + 255 293 ## Monitoring 256 294 257 295 Netdata is included for real-time monitoring, accessible via Tailscale. ··· 381 419 โ”‚ โ–ผ โ”‚ 382 420 โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ 383 421 โ”‚ โ”‚ app (Bun :3000) โ”‚ โ”‚ netdata (:19999) โ”‚ โ”‚ 384 - โ”‚ โ”‚ Telegram webhook โ”‚ โ”‚ via Tailscale only โ”‚ โ”‚ 422 + โ”‚ โ”‚ Telegram webhook โ”‚ โ”‚ via Tailscale โ”‚ โ”‚ 385 423 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ 386 424 โ”‚ โ”‚ โ”‚ 387 425 โ”‚ โ–ผ โ”‚ 388 426 โ”‚ โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” โ”‚ 389 - โ”‚ โ”‚ letta (:8283) โ”‚ โ”‚ 427 + โ”‚ โ”‚ letta (:8283) โ”‚โ—„โ”€โ”€โ”€ also via Tailscale โ”‚ 390 428 โ”‚ โ”‚ Agent + Memory โ”‚ โ”‚ 391 429 โ”‚ โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ โ”‚ 392 430 โ”‚ โ”‚ โ”‚
+3
docker-compose.yml
··· 80 80 timeout: 10s 81 81 retries: 3 82 82 83 + # Letta: Agent framework with memory 84 + # Access via Tailscale: http://TAILSCALE_IP:8283 85 + # Or via Caddy (if configured): https://letta.yourdomain.com 83 86 letta: 84 87 image: letta/letta:latest 85 88 ports: