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
+15
View File
@@ -0,0 +1,15 @@
FROM node:22-slim
WORKDIR /app
COPY package.json package-lock.json* tsconfig.base.json ./
COPY packages ./packages
RUN npm install --no-audit --no-fund && npm run build
ENV PORT=3000 \
DB_PATH=/data/rendezvous.db \
BASE_URL=http://localhost:3000
VOLUME /data
EXPOSE 3000
CMD ["node", "packages/server/dist/src/index.js"]