-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
36 lines (36 loc) · 2.22 KB
/
vercel.json
File metadata and controls
36 lines (36 loc) · 2.22 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
{
"framework": "nextjs",
"crons": [
{ "path": "/api/cron/sync-polling-places", "schedule": "0 6 * * *" },
{ "path": "/api/cron/poll-rss", "schedule": "0 3 * * *" },
{ "path": "/api/cron/batch-translate", "schedule": "0 1 * * *" },
{ "path": "/api/cron/retry-failed", "schedule": "0 2 * * *" },
{ "path": "/api/cron/sync-city-houston", "schedule": "0 7 * * *" },
{ "path": "/api/cron/sync-county-harris", "schedule": "0 8 * * *" },
{ "path": "/api/cron/sync-officials", "schedule": "0 9 * * *" },
{ "path": "/api/cron/sync-state-texas", "schedule": "0 10 * * *" },
{ "path": "/api/cron/sync-elections", "schedule": "30 5 * * 1" },
{ "path": "/api/cron/sync-federal-spending", "schedule": "0 5 * * 1" },
{ "path": "/api/cron/classify-pending", "schedule": "0 11 * * *" },
{ "path": "/api/cron/rewrite-descriptions", "schedule": "0 12 * * *" },
{ "path": "/api/cron/send-reminders", "schedule": "0 14 * * *" },
{ "path": "/api/cron/crawl-orgs", "schedule": "0 4 * * 0" },
{ "path": "/api/cron/sync-city-sf", "schedule": "30 7 * * *" },
{ "path": "/api/cron/poll-ics", "schedule": "0 4 * * *" },
{ "path": "/api/cron/expire-content", "schedule": "30 0 * * *" }
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "X-DNS-Prefetch-Control", "value": "on" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=(self)" },
{ "key": "Strict-Transport-Security", "value": "max-age=63072000; includeSubDomains; preload" },
{ "key": "Content-Security-Policy", "value": "default-src 'self'; script-src 'self' 'unsafe-inline' https://vercel.live https://*.supabase.co; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: blob: https:; connect-src 'self' https://*.supabase.co wss://*.supabase.co https://api.anthropic.com https://vercel.live; frame-ancestors 'none'; base-uri 'self'; form-action 'self'; upgrade-insecure-requests" }
]
}
]
}