Remove din-leumi: fully separate into standalone service

- Removed din-leumi imports, endpoints, and processing from app.py
- Removed bundled din-leumi source from repo
- Simplified Dockerfile (no din-leumi dependency)
- din-leumi now runs as its own Coolify application

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-04 08:34:35 +00:00
parent 324807ff1d
commit cb41867bc9
16 changed files with 3 additions and 1549 deletions

View File

@@ -11,19 +11,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
COPY mcp-server/pyproject.toml /app/mcp-server/pyproject.toml
COPY mcp-server/src/ /app/mcp-server/src/
# Copy Din Leumi MCP server source
COPY din-leumi/ /app/din-leumi/
# Install both MCP servers + web deps
RUN pip install --no-cache-dir /app/mcp-server /app/din-leumi && \
# Install MCP server + web deps
RUN pip install --no-cache-dir /app/mcp-server && \
pip install --no-cache-dir fastapi uvicorn python-multipart
# Copy web app
COPY web/ /app/web/
ENV PYTHONPATH=/app/mcp-server/src:/app/din-leumi/src
ENV PYTHONPATH=/app/mcp-server/src
ENV DOTENV_PATH=/dev/null
ENV DOTENV_PATH=/home/chaim/.env
EXPOSE 8080