-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
120 lines (120 loc) · 2.66 KB
/
Copy pathvercel.json
File metadata and controls
120 lines (120 loc) · 2.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"regions": ["syd1"],
"crons": [
{
"path": "/api/cron/compliance-check",
"schedule": "0 6 * * *"
},
{
"path": "/api/cron/scheduled-reports",
"schedule": "0 * * * *"
},
{
"path": "/api/cron/report-exports",
"schedule": "*/10 * * * *"
},
{
"path": "/api/cron/compliance-exports",
"schedule": "*/15 * * * *"
},
{
"path": "/api/cron/enterprise-exports",
"schedule": "*/15 * * * *"
},
{
"path": "/api/cron/security-retention",
"schedule": "0 3 * * *"
},
{
"path": "/api/cron/billing-reconcile",
"schedule": "0 4 * * *"
},
{
"path": "/api/cron/enforce-grace-period",
"schedule": "30 4 * * *"
},
{
"path": "/api/cron/audit-chain-verify",
"schedule": "0 5 * * *"
},
{
"path": "/api/cron/data-retention",
"schedule": "0 2 * * *"
},
{
"path": "/api/cron/process-user-purges",
"schedule": "0 * * * *"
},
{
"path": "/api/cron/process-org-purges",
"schedule": "15 4 * * *"
},
{
"path": "/api/cron/audit-chain-anchor",
"schedule": "30 5 * * *"
},
{
"path": "/api/cron/dormant-users-report",
"schedule": "0 6 1 * *"
},
{
"path": "/api/cron/compliance-health-snapshot",
"schedule": "0 7 * * 1"
},
{
"path": "/api/cron/process-dormant-user-purges",
"schedule": "0 8 * * 1"
},
{
"path": "/api/automation/cron",
"schedule": "0 * * * *"
},
{
"path": "/api/cron/workflow-resume",
"schedule": "*/5 * * * *"
},
{
"path": "/api/cron/workflow-approval-timeout",
"schedule": "*/5 * * * *"
}
],
"functions": {
"app/api/cron/data-retention/route.ts": {
"maxDuration": 300
},
"app/api/cron/process-user-purges/route.ts": {
"maxDuration": 300
},
"app/api/cron/process-org-purges/route.ts": {
"maxDuration": 300
},
"app/api/cron/audit-chain-anchor/route.ts": {
"maxDuration": 300
},
"app/api/cron/compliance-health-snapshot/route.ts": {
"maxDuration": 300
},
"app/api/cron/process-dormant-user-purges/route.ts": {
"maxDuration": 300
},
"app/api/automation/cron/route.ts": {
"maxDuration": 300
},
"app/api/billing/webhook/route.ts": {
"maxDuration": 60
},
"app/auth/callback/route.ts": {
"maxDuration": 60
},
"app/onboarding/page.tsx": {
"maxDuration": 60
},
"app/**/*.ts": {
"maxDuration": 30
},
"app/**/*.tsx": {
"maxDuration": 30
}
}
}