deckhearth/vercel.json
varutasu 0a47362103
feat(catalog): weekly Vercel Cron sync for MTG and Pokémon sets (#48)
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:59:59 -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
}
}
}