From 7f49ae011c6faa7028fb8f6a0db2fe2df1c96b14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=8Carodej?= Date: Wed, 23 Mar 2022 19:26:51 +0100 Subject: [PATCH] readme update --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9299bada..f71cee76 100644 --- a/README.md +++ b/README.md @@ -65,10 +65,16 @@ That was the hardest part of installation process. Please follow instructions in #### 7. Set up Cron -Add the following Cron entry to your server. Just update your php path (if it's different) and project path: +Add the following Cron entry to your server. + +If you are running on shared hosting, just update your php path (if it's different) and project path: ``` * * * * * /usr/local/bin/php /www/html/your-project/artisan schedule:run >> /dev/null 2>&1 ``` +If you are running on linux server, just update your php path (if it's different) and project path: +``` +* * * * * cd /www/html/your-project && php artisan schedule:run >> /dev/null 2>&1 +``` #### 8. Broadcasting