From bdac94dee93933fd9c4a9d362787db66c2fe8749 Mon Sep 17 00:00:00 2001 From: Oliver L Schoenborn Date: Sun, 13 Dec 2020 20:32:12 -0500 Subject: [PATCH] Update readme Clarify architecture not a repr of proper arch, since lots of viewers are likely to be new to the world of containerized apps --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 54059ce..2aeaac9 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,11 @@ Architecture * A [Node.js](/result) or [ASP.NET Core SignalR](/result/dotnet) webapp which shows the results of the voting in real time -Note ----- +Notes +----- The voting application only accepts one vote per client. It does not register votes if a vote has already been submitted from a client. + +This isn't an example of a properly architected perfectly designed distributed app... it's just a simple +example of the various types of pieces and languages you might see (queues, persistent data, etc), and how to +deal with them in Docker at a basic level.