From 1686bf0f1d1b0be5d9c754cc0af088749b8ef68d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Sun, 30 Jun 2024 23:51:36 +0200 Subject: [PATCH] fix(docs): mismatch in README Motivation ---------- Because changing the port numbers would have a side effects on our deployment, I will just fix the typo in the `README.md`. How to test ----------- 1. Compare the README with the `docker-compose.yml` --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c3eb3c181..26315802e 100644 --- a/README.md +++ b/README.md @@ -142,10 +142,10 @@ npm run dev | Endpoint | Description | | -------------------------------------------------------------------- | -------------------------- | | [http://localhost:3306](http://localhost:3306) | MySQL Database | -| [http://localhost:3000](http://localhost:3000) | Presenter | +| [http://localhost:3000](http://localhost:3001) | Presenter | | [http://localhost:8081](http://localhost:8081) | Presenter Documentation | | [http://localhost:6006](http://localhost:6006) | Presenter Storybook | -| [http://localhost:3001](http://localhost:3001) | Frontend | +| [http://localhost:3001](http://localhost:3000) | Frontend | | [http://localhost:8082](http://localhost:8082) | Frontend Documentation | | [http://localhost:6007](http://localhost:6007) | Frontend Storybook | | [http://localhost:3002](http://localhost:3002) | Admin |