Spaces:
Sleeping
Sleeping
| services: | |
| mcp-server: | |
| build: . | |
| command: python -m server.mcp --transport sse --port 8000 | |
| ports: | |
| - "8000:8000" | |
| environment: | |
| GEMINI_API_KEY: ${GEMINI_API_KEY:-} | |
| ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY:-} | |
| OPENAI_API_KEY: ${OPENAI_API_KEY:-} | |
| volumes: | |
| - ./output:/app/output | |
| web: | |
| build: . | |
| command: python -m server.web --host 0.0.0.0 --port 5000 | |
| ports: | |
| - "5000:5000" | |
| environment: | |
| MCP_SERVER_URL: http://mcp-server:8000/sse | |
| depends_on: | |
| - mcp-server | |
| volumes: | |
| - ./output:/app/output | |