mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-07-30 14:25:00 +00:00
- Remove standalone mode code: file-based stores, standalone gateway, heartbeat service, SQLite memory, standalone docker-compose - Rename docker-compose.managed.yml → docker-compose.postgres.yml - Clean up ~130 Go comments referencing "managed mode" qualifier - Simplify docker-compose.yml env vars (providers/channels via web UI) - Update .env.example to essential vars only (token + encryption key) - Add setup wizard UI (provider → agent → channel bootstrap flow) - Add logs.tail WebSocket handler for live log streaming - Add cursor-pointer to interactive UI components - Clean up config page (remove standalone-only sections) - Update README and docs for managed-only architecture
18 lines
445 B
YAML
18 lines
445 B
YAML
# Self-service overlay — adds web dashboard UI (nginx + React SPA).
|
|
#
|
|
# Recommended usage:
|
|
# docker compose -f docker-compose.yml -f docker-compose.postgres.yml -f docker-compose.selfservice.yml up -d --build
|
|
#
|
|
# Dashboard: http://localhost:3000
|
|
|
|
services:
|
|
goclaw-ui:
|
|
build:
|
|
context: ./ui/web
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "${GOCLAW_UI_PORT:-3000}:80"
|
|
depends_on:
|
|
- goclaw
|
|
restart: unless-stopped
|