From 6acb77bcd556c5d71971840e482c471c13d8a156 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Sch=C3=A4r?= Date: Wed, 26 Jun 2024 15:28:49 +0200 Subject: [PATCH] update readme --- readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.md b/readme.md index a7dbfa1..2f22a2d 100644 --- a/readme.md +++ b/readme.md @@ -23,6 +23,7 @@ and start contributing 😍. app secrets. 1. Execute `docker compose up -d` to start up the stack. The first time you run this command, it will take a minute or two. Subsequent calls will be much faster. +1. Do the db migrations: `docker exec -it wsapp_mailchimp bash` and `php artisan migrate` 1. After a few seconds: Visit [localhost:9001](http://localhost:9001). If you get a connection error, wait 30 seconds then try again. @@ -33,6 +34,9 @@ and start contributing 😍. - Shut down: `docker compose down` - Execute Laravel CLI commands (enter container): `docker exec -it wsapp_mailchimp bash` use `exit` to escape the container. + - add your first entry `php artisan endpoint:add myconfigfile.yml` + - sync an instance `php artisan sync:all toMailchimp myconfigfile.yml --limit=10` + - Add dependency using composer: `docker compose run app composer require DEPENDENCY` ### Testing