Skip to content

Commit

Permalink
Fix some typos in README (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
drifteaur authored Oct 18, 2023
1 parent 0ec6557 commit c5c0553
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,16 @@ Every minute, it writes the current time (UTC timezone) to `./time.log`.
### Drupal cron
- Create a `./.ddev/web-build/drupal.cron` file
- Add the following code to run the drupal scheduler every 10 minute and write to a log file.
- Add the following code to run the drupal scheduler every 10 minutes and write to a log file.
```cron
*/10 * * * * IS_DDEV_PROJECT=true DDEV_PHP_VERSION=8.0 /var/www/html/vendor/bin/drush cron -v |& tee -a /var/www/html/cron-log.txt
```
### Laravel cron
- Create a `./.ddev/web-build/drupal.cron` file
- Add the following code to run the drupal scheduler minute.
- Create a `./.ddev/web-build/laravel.cron` file
- Add the following code to run the laravel scheduler every minute.
```cron
* * * * * cd /var/www/html && IS_DDEV_PROJECT=true php artisan schedule:run >> /dev/null 2>&1
Expand Down

0 comments on commit c5c0553

Please sign in to comment.