How can I produce specific data every time the 1st of each month comes around?

How can I produce specific data every time the 1st of each month comes around?
I use firestore database.
please help me.

example,

come 2023/1/1,
auto create data ↓
2023/1/1,2023/1/2,*********,2023/1/31

come 2023/2/1
auto create data ↓
2023/2/1,2023/2/2,*********,2023/2/30

Either you / a user need to open the app every time the 1st of each month comes around or you need to implement a cron job function in your backend. Firestore enables you to do that with the cloud function as part of their paid plan. Or you can use a no code backend like Xano for building such cron job.

1 Like