Initial commit from template
Some checks failed
Cloudflare Worker API Template / Deploy to ${{ github.ref_name }} environment (push) Failing after 15s

This commit is contained in:
purvarao
2025-11-21 16:27:27 +05:30
commit 07a983d24f
21 changed files with 1742 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:20
WORKDIR /mcp-server
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8787
# Run type check first, then start dev server
CMD ["npm", "run", "dev"]