From bff790655a67e0303acead36ef02b6eb449948c3 Mon Sep 17 00:00:00 2001 From: David Jardin Date: Sat, 18 Jan 2025 14:17:47 +0100 Subject: [PATCH] added migration step to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a9d7466..a901147 100644 --- a/README.md +++ b/README.md @@ -5,5 +5,7 @@ This is the server for automated updates of Joomla CMS instances running on joom * Install docker and docker compose * Check out this repo * Start the webserver and DB services: `docker-compose -f docker-compose.prod.yml up -d` +* Apply the database migrations: `docker-compose run --entrypoint="php artisan migrate" php` * Daemonize the queue worker using supervisord; the call in question is: `docker-compose run --entrypoint="php artisan horizon" php` * Add a cron job to execute the task scheduler. The scheduler should be trigger every 5min, the call is: `docker-compose run --entrypoint="php artisan schedule:run" php` +