From 6123efd00074fa1674162dec35c022b44903fe1b Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Thu, 16 Jun 2022 22:18:02 -0400 Subject: [PATCH] Update README.md --- README.md | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2abd103..bf30cec 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,24 @@ -# assignment7 +# ExerciseTracker -Full Stack MERN App \ No newline at end of file +This single page application uses the MongoDB, Express, React, and Node (MERN) +Stack to implement a REST API and a graphical interface for logging exercises. +The home page greets the user with a table of past exercises. An exercise can +be edited, or deleted, by clicking on the appropriate icon within the table. + +Home page + +Click the "plus" button on the home page to create a new exercise, +and enter the details such as the name of the exercise and the number of +repititions. Alternatively, use the links section at the bottom of the +page to navigate the site. + +Create page + +Note that when creating or editing an exercise the data is +validated to help ensure accurate input. For example, the server verifies that +"weight" and "reps" are integers, while "name" must be a string. + +Edit page + +After editing or creating an exercise the user is taken back to the home page to view the +updated table.