Initial commit: Handoff Pro MCP server for Kellow Construction

This commit is contained in:
brian
2026-05-29 14:38:57 -07:00
commit 3a62428751
28 changed files with 1860 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
COPY lib/ lib/
COPY scripts/ scripts/
COPY server.py .
RUN python3 scripts/init_db.py
EXPOSE 3101
CMD ["python3", "server.py"]