readme update

This commit is contained in:
Čarodej
2022-03-23 19:26:51 +01:00
parent a608678bb9
commit 7f49ae011c

View File

@@ -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