Initial commit

This commit is contained in:
Samraaj Bath
2026-06-29 15:11:48 -07:00
commit 66dfdcc58d
404 changed files with 45970 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# API service (REST + MCP). Light — no browser needed (capture runs in the worker).
FROM node:22-slim
WORKDIR /app
# Install workspace deps from the lockfile.
COPY . .
RUN npm ci
ENV PORT=8787
EXPOSE 8787
# Runs TypeScript directly via tsx (matches the compiler's runtime model).
CMD ["npm", "run", "start", "--workspace", "@cloner/api"]