-
Notifications
You must be signed in to change notification settings - Fork 4
/
vercel.json
66 lines (66 loc) · 1.73 KB
/
vercel.json
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
{
"buildCommand": "yarn prisma generate && yarn prisma migrate deploy && next build",
"crons": [
{
"path": "/api/points?type=MULTIPLIER",
"schedule": "0 18 * * *"
},
{
"path": "/api/points?type=PROTOCOL",
"schedule": "3 18 * * *"
},
{
"path": "/api/points?type=CAMELOT",
"schedule": "5 18 * * *"
},
{
"path": "/api/points?type=SOCIAL",
"schedule": "7 18 * * *"
},
{
"path": "/api/oracle?network=ARBITRUM&channel=1232919348079890493",
"schedule": "50 */1 * * *"
},
{
"path": "/api/rate?network=ARBITRUM&channel=1232919348079890493",
"schedule": "53 */1 * * *"
},
{
"path": "/api/analytics?network=ARBITRUM&channel=1232919348079890493",
"schedule": "55 */1 * * *"
},
{
"path": "/api/auction?network=ARBITRUM&channel=1232919348079890493",
"schedule": "55 */1 * * *"
},
{
"path": "/api/oracle?network=ARBITRUM_SEPOLIA&channel=1232919065169891398",
"schedule": "40 */1 * * *"
},
{
"path": "/api/rate?network=ARBITRUM_SEPOLIA&channel=1232919065169891398",
"schedule": "43 */1 * * *"
},
{
"path": "/api/analytics?network=ARBITRUM_SEPOLIA&channel=1232919065169891398",
"schedule": "45 */1 * * *"
},
{
"path": "/api/auction?network=ARBITRUM_SEPOLIA&channel=1232919065169891398",
"schedule": "45 */1 * * *"
},
{
"path": "/api/analytics?network=OPTIMISM&channel=1217248902634409994",
"schedule": "35 */1 * * *"
},
{
"path": "/api/auction?network=OPTIMISM&channel=1217248902634409994",
"schedule": "35 */1 * * *"
}
],
"functions": {
"pages/api/*.js": {
"maxDuration": 300
}
}
}