From 5f670f54e40aed9cf654e719ee023b31df5570e4 Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 22 Jun 2020 16:14:09 -0500 Subject: [PATCH] update readme (typo, cli.py explanation) --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 59623a8..62888be 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A simple locally hosted Flask webapp supporting Trivia competitions. ## Setup -Setup is designed to be as simple as possible with no configuration required. This webapp should only be locally acessible +Setup is designed to be as simple as possible with no configuration required. This webapp should only be locally accessible on at `localhost:5000` unless ``` @@ -16,6 +16,14 @@ flask run Edit .flaskenv to change the configuration preset. +The CLI clientside implementation can be ran with + +``` +python cli.py +``` + +and exited with `q`. + ## Application Design The webapp has two sides: Client and Server.