Learn about the different processes that make up your applications.
npm start
or yarn start
.
You cannot remove the web process, and you can only have one web process per application.
Update your application's web process.
Create a background worker process.
php artisan schedule:work
.Create a cron job process.
*
Minute (0-59)
*
Hour (0-23)
*
Day of the month (1-31)
*
Month (1-2)
*
Day of the week (0-6)
* * * * *
*/30 * * * *
note that */30
ensures the process runs every 30 minutes (12:00, 12:30, etc.); if you use 30
without the */
it will only run at minute 30 (12:30, 13:30, etc.).
0 * * * *
0 0 * * *
0 0 * * 5
0 0 1 * *
Run a cron job manually.
Create a job process.