From da0854bca15131ccc2f5ba78d82460004e359ca1 Mon Sep 17 00:00:00 2001 From: Alexis Drai Date: Sat, 11 Feb 2023 11:47:44 +0100 Subject: [PATCH] :pencil2: Fix typo --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d9e7fb8..dfde72f 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,8 @@ Overall, the architecture may be summed up like so: #### Ports | What | Where | |--|--| -| REST API | https://localhost/7229 | -| API Gateway | https://localhost/5003 | +| REST API | https://localhost:7229 | +| API Gateway | https://localhost:5003 | | WebSocket | ... | #### Routes @@ -97,8 +97,8 @@ The Gateway routes offer access to the REST API in a similar way as the REST API | REST(old) | Gateway(current) | |--|--| -| `GET` on `https://localhost/7229/api/cats` | `GET` on `https://localhost/5003/gateway/cats` | -| `DELETE` on `https://localhost/7229/api/bars/{id}` | `DELETE` on `https://localhost/5003/gateway/bars/{id}` | +| `GET` on `https://localhost:7229/api/cats` | `GET` on `https://localhost:5003/gateway/cats` | +| `DELETE` on `https://localhost:7229/api/bars/{id}` | `DELETE` on `https://localhost:5003/gateway/bars/{id}` | ...and for the websocket: - old :