deckhearth/vercel.json
varutasu 8f3fbe70a2
Add admin panel button to trigger catalog sync. (#50)
Expose POST /api/admin/sync-catalog for authenticated admins (import rate limit, 300s timeout) and wire a Run catalog sync control on /admin/card-import.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-28 09:18:01 -05:00

17 lines
294 B
JSON

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