fix: restore brainstorming feature with missing socket server and real-time events
Some checks failed
CI / Lint, Test & Build (push) Failing after 7m48s
CI / Deploy production (on server) (push) Has been cancelled

This commit is contained in:
Antigravity
2026-05-19 20:07:56 +00:00
parent 66c6f7ee8f
commit fdb148144e
15 changed files with 500 additions and 2 deletions

View File

@@ -88,6 +88,32 @@ services:
cpus: '0.5'
memory: 512M
# ============================================
# memento-socket - Socket.io Real-time Server
# ============================================
memento-socket:
build:
context: ./memento-note
dockerfile: ${MEMENTO_SOCKET_DOCKERFILE:-Dockerfile.socket}
container_name: memento-socket
env_file:
- .env.docker
ports:
- "3002:3002"
environment:
- NODE_ENV=production
restart: unless-stopped
networks:
- memento-network
deploy:
resources:
limits:
cpus: '1'
memory: 512M
reservations:
cpus: '0.25'
memory: 128M
# ============================================
# mcp-server - MCP Protocol Server
# ============================================