We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e71d4a0 commit 2ca8f58Copy full SHA for 2ca8f58
docs/docs/api/cronjob.md
@@ -9,7 +9,7 @@ import { CronJob } from "quirrel/next";
9
10
export default CronJob(
11
"api/someCronJob", // the route that it's reachable on
12
- ["0 2 * * *", "Europe/Berlin"], // every day at 2AM, in Berlin time
+ ["0 2 * * *", "Europe/Berlin"], // every day at 2AM, in Berlin time. you can also write @weekly or @daily!
13
async (job) => {
14
// do something
15
}
0 commit comments