deploy: fix TemplateResponse signature

This commit is contained in:
Antigravity
2026-06-24 22:10:04 +00:00
commit 458cdaa3c2
78 changed files with 2085 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
version: '3.8'
services:
context-hub:
build: .
container_name: context-hub
restart: unless-stopped
ports:
- "3093:8000"
volumes:
- ./data:/app/data
env_file:
- .env
networks:
- n8n
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
networks:
n8n:
external: true