Deliver Steps 3-8: integration config, meal plans, provider registry, MCP connector (14 tools), B2A files, nginx proxy, AGENT_GUIDE, LICENSE

This commit is contained in:
Claude 2026-06-15 14:34:09 +00:00
parent cb892564d9
commit 6fb5d759ef
13 changed files with 958 additions and 2 deletions

View file

@ -4,6 +4,32 @@ server {
root /usr/share/nginx/html;
index index.html;
# B2A discovery files
location = /llms.txt {
default_type text/plain;
}
location /.well-known/ {
default_type application/json;
}
location /.well-known/skills/ {
default_type text/plain;
}
# MCP proxy routes /mcp to the MCP connector container
location /mcp {
proxy_pass http://mcp-connector:3001;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
}
# Backend API
location /api {
proxy_pass http://backend:8000;
proxy_set_header Host $host;
@ -12,6 +38,7 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
# SPA catch-all
location / {
try_files $uri $uri/ /index.html;
}