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

This commit is contained in:
Harsh Gupta
2026-03-05 16:32:07 +05:30
commit d63962d6d6
21 changed files with 1741 additions and 0 deletions

18
docker-compose.yml Normal file
View File

@@ -0,0 +1,18 @@
version: '3.8'
services:
prompt-manager-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: