From e52a216fa4e9a49611d01cd657c48011990f30f0 Mon Sep 17 00:00:00 2001 From: tyler36 <7234392+tyler36@users.noreply.github.com> Date: Thu, 12 Oct 2023 00:35:00 +0000 Subject: [PATCH 1/2] Add WordPress TOC entry --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4ced364..9ef302e 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ - [TYPO3 scheduler](#typo3-scheduler) - [Drupal cron](#drupal-cron) - [Laravel cron](#laravel-cron) + - [WordPress cron](#wordpress-cron) ## Introduction From 28d243ba1342201473cbf862f878a60701d23599 Mon Sep 17 00:00:00 2001 From: tyler36 <7234392+tyler36@users.noreply.github.com> Date: Thu, 12 Oct 2023 00:35:22 +0000 Subject: [PATCH 2/2] minor linting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ef302e..6bcec25 100644 --- a/README.md +++ b/README.md @@ -118,8 +118,8 @@ Every minute, it writes the current time (UTC timezone) to `./time.log`. ```cron */15 * * * * IS_DDEV_PROJECT=true DDEV_PHP_VERSION=8.1 cd /var/www/html && /usr/local/bin/wp cron event run --due-now 2>&1 | tee -a /var/www/html/cron.log ``` -- This configuration will run the WordPress scheduler every 15 minutes and will create a `cron.log` file in the root of your project +- This configuration will run the WordPress scheduler every 15 minutes and will create a `cron.log` file in the root of your project **Contributed and maintained by [@tyler36](https://github.com/tyler36) based on the original [Running TYPO3 Cron inside the web container](https://github.com/ddev/ddev-contrib/tree/master/recipes/cronjob) by [@thomaskieslich](https://github.com/thomaskieslich)**