Initial SQL-only 1C adapter baseline

This commit is contained in:
2026-07-22 03:03:47 +03:00
commit e2503b77e7
545 changed files with 184711 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PORT=8021
WORKDIR /app
COPY adapter_1c_mcp.py /app/adapter_1c_mcp.py
EXPOSE 8021
CMD ["python", "/app/adapter_1c_mcp.py", "--host", "0.0.0.0", "--port", "8021"]
File diff suppressed because it is too large Load Diff