feat: basics

This commit was merged in pull request #1.
This commit is contained in:
2026-07-06 07:55:40 +00:00
parent 8b3e116062
commit fc976cd6ef
20 changed files with 5800 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY pyproject.toml ./
RUN pip install --no-cache-dir -e ".[http]"
COPY . .
CMD ["owa-mcp"]