14-file blueprint including: - sources.yml with data source provenance - 12 golden contract tests with native-language search terms - 5-6 drift detection anchors - MCP Registry + npm package configs - Vercel deployment config (SMALL tier) - Security policies and issue templates Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
411 B
JSON
18 lines
411 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"buildCommand": "bash scripts/download-db.sh && npm run build",
|
|
"functions": {
|
|
"api/mcp.ts": {
|
|
"maxDuration": 30,
|
|
"memory": 1024,
|
|
"includeFiles": "{data/database.db,node_modules/node-sqlite3-wasm/dist/node-sqlite3-wasm.wasm}"
|
|
}
|
|
},
|
|
"crons": [
|
|
{
|
|
"path": "/api/health",
|
|
"schedule": "*/5 * * * *"
|
|
}
|
|
]
|
|
}
|