Open Source Team Metrics based on PRs
1{
2 "$schema": "https://openapi.vercel.sh/vercel.json",
3 "framework": "nextjs",
4 "buildCommand": "pnpm build",
5 "devCommand": "pnpm dev",
6 "installCommand": "pnpm install",
7 "regions": ["iad1"],
8 "functions": {
9 "app/api/webhook/github/route.ts": {
10 "maxDuration": 30
11 },
12 "app/api/organizations/*/sync/route.ts": {
13 "maxDuration": 60
14 },
15 "app/api/github/repositories/*/sync/route.ts": {
16 "maxDuration": 60
17 }
18 },
19 "headers": [
20 {
21 "source": "/api/(.*)",
22 "headers": [
23 {
24 "key": "X-Content-Type-Options",
25 "value": "nosniff"
26 },
27 {
28 "key": "X-Frame-Options",
29 "value": "DENY"
30 },
31 {
32 "key": "X-XSS-Protection",
33 "value": "1; mode=block"
34 },
35 {
36 "key": "Referrer-Policy",
37 "value": "strict-origin-when-cross-origin"
38 }
39 ]
40 }
41 ],
42 "crons": [
43 {
44 "path": "/api/cron/sync-organizations",
45 "schedule": "0 2 * * *"
46 }
47 ]
48}