From b4bade97df248824438b3090341563ea2fb966cb Mon Sep 17 00:00:00 2001 From: sid palas Date: Sat, 27 Jul 2024 17:03:30 -0400 Subject: [PATCH] add period --- 06-demo-application/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06-demo-application/README.md b/06-demo-application/README.md index 8249901..7117cec 100644 --- a/06-demo-application/README.md +++ b/06-demo-application/README.md @@ -4,7 +4,7 @@ ## Minimal 3 tier web application -- **React frontend:** Uses react query to load data from the two apis and display the result +- **React frontend:** Uses react query to load data from the two apis and display the result. - **Node.js and Go APIs:** Both have `/` and `/ping` endpoints. `/` queries the Database for the current time and the number of requests for each api recorded within the database, and `/ping` returns `pong` - **Postgres Database:** An empty PostgreSQL database with no tables or data. Used to show how to set up connectivity. The API applications execute `SELECT NOW() as now;` to determine the current time to return. - **Python Load Generator:** Queries one of either the Node.js or Go APIs at a configurable speed.