-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathvercel.json
More file actions
56 lines (56 loc) · 1.15 KB
/
Copy pathvercel.json
File metadata and controls
56 lines (56 loc) · 1.15 KB
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
55
56
{
"crons": [
{
"path": "/api/cron/sync-model-stats",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/sync-providers",
"schedule": "*/10 * * * *"
},
{
"path": "/api/cron/cleanup-device-auth",
"schedule": "0 3 * * *"
},
{
"path": "/api/cron/sync-security-alerts",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/cleanup-stale-analyses",
"schedule": "*/15 * * * *"
},
{
"path": "/api/cron/cleanup-api-request-log",
"schedule": "0 12 * * *"
},
{
"path": "/api/cron/kilo-pass-yearly-monthly-base",
"schedule": "0 * * * *"
},
{
"path": "/api/cron/deployment-threat-scan",
"schedule": "*/5 * * * *"
},
{
"path": "/api/cron/oss-monthly-reset",
"schedule": "0 0 * * *"
}
],
"functions": {
"src/app/api/openrouter/[...path]/route.ts": {
"maxDuration": 800
},
"src/app/slack/webhook/route.ts": {
"maxDuration": 800
},
"src/app/api/trpc/[trpc]/route.ts": {
"maxDuration": 800
}
},
"build": {
"env": {
"GIT_LFS_SKIP_SMUDGE": "0"
}
}
}