forked from SYMBaiEX/GitShipt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
21 lines (21 loc) · 868 Bytes
/
Copy pathvercel.json
File metadata and controls
21 lines (21 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "nextjs",
"bunVersion": "1.x",
"installCommand": "bun install --frozen-lockfile",
"buildCommand": "bun run build",
"devCommand": "bun run dev -- --port $PORT",
"outputDirectory": "apps/web/.next",
"fluid": true,
"regions": ["iad1"],
"crons": [
{ "path": "/api/cron/index-github", "schedule": "*/15 * * * *" },
{ "path": "/api/cron/snapshot", "schedule": "0 0 * * *" },
{ "path": "/api/cron/payout", "schedule": "30 0 * * *" },
{ "path": "/api/cron/reconcile-funds", "schedule": "*/15 * * * *" },
{ "path": "/api/cron/expire-escrow", "schedule": "0 1 * * *" },
{ "path": "/api/cron/health", "schedule": "* * * * *" },
{ "path": "/api/cron/publish-kpis", "schedule": "* * * * *" },
{ "path": "/api/cron/audit-chain", "schedule": "0 */6 * * *" }
]
}