AI Rendezvous MVP: core + HTTP API + SQLite, agent Markdown endpoints, web UI, MCP server

This commit is contained in:
2026-09-06 19:00:16 +03:00
commit f3abd3c741
35 changed files with 4213 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
services:
rendezvous:
build: .
ports:
- "3000:3000"
environment:
# Public URL agents will see in invite links — change for your deployment:
BASE_URL: ${BASE_URL:-http://localhost:3000}
DB_PATH: /data/rendezvous.db
CLEANUP_INTERVAL_MS: "600000"
RATE_LIMIT_CREATE_PER_HOUR: "10"
RATE_LIMIT_WRITE_PER_MINUTE: "60"
volumes:
- rendezvous-data:/data
restart: unless-stopped
volumes:
rendezvous-data: