-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
47 lines (47 loc) · 1.01 KB
/
vercel.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "node prisma/set-schema.mjs && prisma generate && prisma migrate deploy && next build",
"installCommand": "bun install",
"crons": [
{
"path": "/api/cron/demo-reset",
"schedule": "0 0 * * *"
},
{
"path": "/api/cron/sessions",
"schedule": "0 1 * * *"
},
{
"path": "/api/cron/notifications",
"schedule": "0 2 * * *"
},
{
"path": "/api/cron/workflows",
"schedule": "0 3 * * *"
},
{
"path": "/api/cron/gdpr-retention",
"schedule": "0 4 * * *"
},
{
"path": "/api/cron/ldap-sync",
"schedule": "0 5 * * *"
},
{
"path": "/api/cron/cleanup",
"schedule": "0 6 * * *"
},
{
"path": "/api/cron/scheduled-reports",
"schedule": "0 7 * * *"
},
{
"path": "/api/cron/access-expiry",
"schedule": "30 7 * * *"
},
{
"path": "/api/cron/intune-sync",
"schedule": "0 8 * * *"
}
]
}