ericE
Convex Community3y ago
9 replies
eric

Not able to get cron jobs working (won't show up in dashboard)

Not sure if I'm doing something wrong but the Cron dashboard isn't showing any of my cron jobs. I set up a fairly simple convex/cron.ts file following this format:

import { cronJobs } from "convex/server";
import { internal } from "./_generated/api";

const crons = cronJobs();

crons.hourly(
  "fill missing book genres @ 0",
  { minuteUTC: 0 },
  internal.myFunctions.fillMissingBookGenres
);

export default crons;


However, my dashboard still has this (aka no cron jobs). Would love help!
image.png
Was this page helpful?