Note: This is a copy of my repo from the org (Clemson 3720 Software Engineering Team Repositories -> Team6-Cart)
To get the repo on your local machine:
- In folder of your choice run "git init" to create a new repo
- Then run "git remote add [name_of_remote] https://github.com/Clemson3720/Team6-Cart.git"
- where [name_of_remote] can be whatever you want, recommended: origin
- Afterwards, run "git fetch", followed by "git pull [name_of_remote] main"
- if your local branch is named "master", you will have to rename before pushing to this repo. To do so run "git branch -m master main"
To test run our Heroku Postman Collection, please copy and paste from the examples into new tab to send in this order:
-
Run GET /carts -- Get All Carts to view an empty list. This is because we haven't added any carts to the list yet!
-
Run POST /carts -- here you will choose to create a cart with an id. In our examples, we have setup 3 different ones with 3 different ids. Feel free to pick any.
-
Run GET /carts -- Now you should see the newly added cart.
-
Run POST /carts -- Add another cart, or two, so this way we can see multiple carts in the list.
Recommended: Run GET /carts to view changes to the cart in the list -
Run GET /carts/:cartID/cartTime -- For the IDs you chose, run the specified example. These will return the cart's uptime(in days) -- should be 0.
-
Run GET /carts/:cartID -- Use this to get the cart of an ID you chose.
-
Run POST /carts/:cartID/:productID/:productModifier -- Use this to add a product to the cart of choice (id you chose). I suggest that you add a product to every cart you have in your list.
For the two next steps, if you have multiple carts, feel free to run on each cart -
Run PUT /carts/:cartID/:productID/:productModifier -- Use this to update the quantity of the product in the cart of choice.
-
Run DEL /carts/:cartID/:productID/:productModifier -- Use this to delete a product from the cart of choice.
Recommended: Run GET /carts to view changes to the cart in the list -
Run DEL /carts/:cartID -- Use this to delete a cart of choice.
Recommended: Run GET /carts to view changes to the cart in the list -
Run PUT /carts -- Update all carts in the list (Adds 1 to All cartIDs and cartTimes).
-
Finally, run DEL /carts -- Deletes all carts in the list.
Recommended: Run GET /carts to view changes to the cart in the list