Question

How to Setup Cron Job in App Platform using laravel

I am still new in App platform and was wondering how to set up crons job using Laravel Task Scheduler


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

alexdo
Site Moderator
Site Moderator badge
April 15, 2023

Hello @buzz34

You can check our article on How To Setup a Job Scheduler on the DigitalOcean App Platform

https://docs.digitalocean.com/developer-center/how-to-setup-a-job-scheduler-on-digitalocean-app-platform/

You can then define this cron job that will call the Laravel command scheduler every minute. Then, Laravel evaluates your scheduled tasks and runs the tasks that are due.

  1. * * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1

Regards

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up