Initial commit

This commit is contained in:
2025-10-28 11:50:15 +00:00
commit 057359608b
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: