Cron job not running in production but running locally

I am attempting to run this job but it is not appearing to run in the logs, whereas it runs locally (every 5 minutes). The first line is a console log so regardless of the result, it should log something

job updateStaleTikTokStats {
    executor: PgBoss,
  perform: {
    fn: import {updateStaleTikTokStats} from "@src/server/workers/updateStaleTikTokStats"
  },
  schedule: {
    cron: "*/5 * * * *" 
  },
  entities: [UnverifiedCreator, UnverifiedCreatorTikTokStats]
}
Was this page helpful?