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

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
template-server:
build:
context: .
dockerfile: Dockerfile
ports:
- "8787:8787"
volumes:
- .:/mcp-server
- node_modules:/mcp-server/node_modules
environment:
- WORKER_ENV=${WORKER_ENV:-development}
command: npx wrangler dev --ip 0.0.0.0
volumes:
node_modules: