-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
54 lines (54 loc) · 995 Bytes
/
Copy pathvercel.json
File metadata and controls
54 lines (54 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"version": 2,
"buildCommand": "npm run build",
"installCommand": "npm install",
"framework": null,
"functions": {
"api/index.ts": {
"maxDuration": 300,
"memory": 1024,
"includeFiles": "src/**,data/**"
}
},
"rewrites": [
{
"source": "/.well-known/:path*",
"destination": "/api"
},
{
"source": "/health",
"destination": "/api"
},
{
"source": "/mcp",
"destination": "/api"
},
{
"source": "/api/:path*",
"destination": "/api"
}
],
"cleanUrls": true,
"crons": [
{
"path": "/api/run-tests",
"schedule": "0 * * * *"
},
{
"path": "/api/leaderboard/rescore",
"schedule": "0 3 * * 0"
},
{
"path": "/api/admin/stats-digest",
"schedule": "0 6 * * *"
},
{
"path": "/api/run-calibration",
"schedule": "0 4 * * *"
},
{
"path": "/api/refit-isotonic",
"schedule": "0 3 * * *"
}
]
}