Task Scheduler on Heroku to run PHP script

0

I need to run a PHP script on Heroku with the task scheduler, I'm reading this article but I'm not understanding. Any idea?

    
asked by anonymous 09.09.2014 / 21:04

1 answer

2

I'm not sure what you mean by "running my own scheduled tasks manually." For cron specifically, you need access to crontab, which they can control, as they are your servers. If you have another way to do it, it would probably be fine, but keep in mind that your application is not tied to a specific server when run on Heroku, and that the server will switch between runs.

In addition, unless it has changed since the last time I checked, you can run daily cron jobs for free, but every hour costs $ 3 / mo.

Of course, good news is that crons are free using this addon:

link

    
15.09.2014 / 18:38