Event that will be called every beginning of the month
Unanswered
Akita posted this in #help-forum
AkitaOP
How can I make an event be called at the beginning of the month
12 Replies
@Akita How can I make an event be called at the beginning of the month
you can use a cron job. i think vercel has their own custom implementation if your site is hosted there
https://vercel.com/guides/how-to-setup-cron-jobs-on-vercel
https://vercel.com/guides/how-to-setup-cron-jobs-on-vercel
AkitaOP
@Dayo i cant do it without vercel? Just with nextjs?
@Akita <@694749037160824902> i cant do it without vercel? Just with nextjs?
no it's not compatible with the serverless paradigm
you can do it with other hosts than Next
github actions etc.
the only alternative with Next is running a custom server and self hosting
which is not super recommanded
I'd tend to setup a separate server for cron jobs if you really need that
AkitaOP
I want to delete db rows at the end of the month
I think i can do it with mysql, idk