I have two apps that need to run scheduled tasks. One will charge users on a monthly basis with forte, the other will push to an api possibly multiple times a day. Each app will do so for multiple users.
I am currently figuring out the best way to approach this with a solution that can scale. My first thought would be to create a worker for each user to run node-cron or something similar.
I am looking for guidance from developers who have run into this kind of thing.
Thanks for the help!