-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
38 lines (38 loc) · 756 Bytes
/
vercel.json
File metadata and controls
38 lines (38 loc) · 756 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
{
"crons": [
{
"path": "/api/cron/cleanup-rams",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/cleanup-ai-tools",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/downgrade-subscriptions",
"schedule": "0 3 * * *"
},
{
"path": "/api/cron/cleanup-tokens",
"schedule": "0 4 * * *"
},
{
"path": "/api/cron/cleanup-downloads",
"schedule": "0 5 * * 0"
},
{
"path": "/api/cron/cleanup-org-charts",
"schedule": "0 3 * * *"
},
{
"path": "/api/cron/cleanup-visualise",
"schedule": "15 3 * * *"
}
],
"functions": {
"src/app/api/tbt-download/route.ts": {
"maxDuration": 30,
"memory": 1024
}
}
}