-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
41 lines (41 loc) · 827 Bytes
/
Copy pathvercel.json
File metadata and controls
41 lines (41 loc) · 827 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
{
"fluid": true,
"ignoreCommand": "bash scripts/vercel-ignore.sh",
"functions": {
"src/app/api/auth/verify/route.ts": {
"memory": 1024,
"maxDuration": 10
},
"src/app/api/cron/**/*": {
"maxDuration": 60
},
"src/app/api/wavewarz/sync/route.ts": {
"maxDuration": 120
},
"src/app/api/**/*": {
"maxDuration": 10
}
},
"crons": [
{
"path": "/api/cron/agents/vault",
"schedule": "0 6 * * *"
},
{
"path": "/api/cron/agents/banker",
"schedule": "0 14 * * *"
},
{
"path": "/api/cron/agents/dealer",
"schedule": "0 22 * * *"
},
{
"path": "/api/cron/juke-stale-rooms",
"schedule": "0 4 * * *"
},
{
"path": "/api/cron/heart-recovery",
"schedule": "*/5 * * * *"
}
]
}