deckhearth/vercel.json
Randall Stillwell 3849f54d05 feat(catalog): weekly Vercel Cron sync for MTG and Pokémon sets
Extract shared import logic into lib/card-import, discover missing sets via
Scryfall/Pokémon TCG APIs, and expose GET /api/cron/sync-catalog protected
by CRON_SECRET (max 3 sets/run, paced imports).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-27 14:47:36 -05:00

14 lines
221 B
JSON

{
"framework": "nextjs",
"crons": [
{
"path": "/api/cron/sync-catalog",
"schedule": "0 6 * * 1"
}
],
"functions": {
"pages/api/cron/sync-catalog.js": {
"maxDuration": 300
}
}
}