-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvercel.json
More file actions
57 lines (57 loc) · 1.27 KB
/
vercel.json
File metadata and controls
57 lines (57 loc) · 1.27 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
{
"bunVersion": "1.x",
"buildCommand": "bun run build",
"installCommand": "bun install",
"env": {
"SKIP_TYPE_CHECK": "1",
"NODE_OPTIONS": "--max_old_space_size=4096"
},
"functions": {
"app/api/**/*.{js,ts}": {
"maxDuration": 30
}
},
"crons": [
{
"path": "/api/cron/create-monthly-earnings",
"schedule": "0 7 1 * *"
},
{
"path": "/api/usd/process-writer-earnings",
"schedule": "0 8 1 * *"
},
{
"path": "/api/cron/automated-payouts",
"schedule": "0 9 1 * *"
},
{
"path": "/api/cron/weekly-digest",
"schedule": "0 10 * * 1"
},
{
"path": "/api/cron/first-page-activation",
"schedule": "0 13 * * *"
},
{
"path": "/api/cron/username-reminder",
"schedule": "0 14 * * *"
},
{
"path": "/api/cron/payout-setup-reminder",
"schedule": "0 15 * * *"
},
{
"path": "/api/cron/email-verification-reminder",
"schedule": "0 16 * * *"
},
{
"path": "/api/cron/reactivation",
"schedule": "0 16 * * 1"
},
{
"path": "/api/cron/platform-balance-check",
"schedule": "0 6 * * *"
}
],
"ignoreCommand": "if [[ \"$VERCEL_GIT_COMMIT_REF\" == \"dependabot\"* ]]; then exit 0; else exit 1; fi"
}