stack/apps/backend/vercel.json
2026-07-13 13:33:22 -07:00

28 lines
852 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": null,
"rewrites": [
{ "source": "/api/:version/internal/config/github/apply", "destination": "/api/config-github-apply" },
{ "source": "/api/:version/internal/config/github/commit", "destination": "/api/config-github-commit" },
{ "source": "/api/:version/internal/config/github/cancel", "destination": "/api/config-github-cancel" },
{ "source": "/(.*)", "destination": "/api" }
],
"crons": [
{
"path": "/api/latest/internal/email-queue-step",
"schedule": "* * * * *"
},
{
"path": "/api/latest/internal/external-db-sync/poller",
"schedule": "* * * * *"
},
{
"path": "/api/latest/internal/external-db-sync/sequencer",
"schedule": "* * * * *"
}
],
"github": {
"autoJobCancelation": false
}
}