- Add .gitignore for __pycache__, node_modules, .playwright-mcp - Add CLAUDE.md project instructions - docker-compose: remove host port exposure for internal services, remove Ollama container (use host), add CORS origin, bake NEXT_PUBLIC_API_URL at build time, run alembic migrations on gateway startup, add CPU-only torch pre-install - gateway: add CORS middleware, graceful Slack degradation without bot token, fix None guard on slack_handler - gateway pyproject: add aiohttp dependency for slack-bolt async - llm-pool pyproject: install litellm from GitHub (removed from PyPI), enable hatch direct references - portal: enable standalone output in next.config.ts - Remove orphaned migration 003_phase2_audit_kb.py (renamed to 004) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
30 lines
713 B
TOML
30 lines
713 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "konstruct-gateway"
|
|
version = "0.1.0"
|
|
description = "Channel Gateway — unified ingress for all messaging platforms"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"konstruct-shared",
|
|
"konstruct-router",
|
|
"konstruct-orchestrator",
|
|
"fastapi[standard]>=0.115.0",
|
|
"slack-bolt>=1.22.0",
|
|
"aiohttp>=3.9.0",
|
|
"python-telegram-bot>=21.0",
|
|
"httpx>=0.28.0",
|
|
"redis>=5.0.0",
|
|
"boto3>=1.35.0",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
konstruct-shared = { workspace = true }
|
|
konstruct-router = { workspace = true }
|
|
konstruct-orchestrator = { workspace = true }
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["gateway"]
|