docs(dev-environment): 📝 Update dev setup docs with OAuth provider configuration examples

This commit is contained in:
Quinn Ftw 2026-01-20 10:14:12 -08:00
parent 41409b195b
commit f6a04450c3

View file

@ -115,7 +115,7 @@ User=lilith
Group=lilith
WorkingDirectory=/var/home/lilith/Code/@applications/@model-boss/services/coordinator/service
ExecStart=/var/home/lilith/.local/share/pnpm/pnpm exec model-boss-coordinator
Environment=MODEL_BOSS_PORT=11000
Environment=MODEL_BOSS_PORT=8210
Environment=MODEL_BOSS_HOST=0.0.0.0
Environment=MODEL_BOSS_REDIS_URL=redis://localhost:6379
Restart=on-failure
@ -141,8 +141,8 @@ chmod +x install upgrade
# Check status
sudo systemctl status model-boss
# Check health endpoint
curl http://localhost:11000/health
# Check health endpoint (port loaded from @model-boss/infrastructure/ports.yaml)
curl http://localhost:8210/health
# View logs
sudo journalctl -u model-boss -f
@ -320,13 +320,13 @@ Imajin ports are remapped from their defaults to avoid conflicts:
└───────────────────────────────┬─────────────────────────────────┘
│ Containers access model-boss via
│ host.docker.internal:11000
│ host.docker.internal:8210
┌───────────────────────────────▼─────────────────────────────────┐
│ Host Level (systemd) │
│ │
│ model-boss.service │
│ └── model-boss-coordinator :11000
│ └── model-boss-coordinator :8210
│ └── Coordinates GPU leases across all ML services │
│ │
└─────────────────────────────────────────────────────────────────┘
@ -340,7 +340,7 @@ Imajin ports are remapped from their defaults to avoid conflicts:
1. Check logs: `sudo journalctl -u model-boss -f`
2. Verify Redis is running: `docker ps | grep redis`
3. Check port availability: `ss -tlnp | grep 11000`
3. Check port availability: `ss -tlnp | grep 8210`
### Imajin GPU services fail