This is a demonstration of my app "The Fridge Tracker!" My notes, seen in this video, are pasted below:
value my software provides :
my software provides users with a quick and simple way of tracking expiration dates for food items bought from the grocery store.
final fridge manager :
- expiration_service.py (big pool)
- recipe_service.py (big pool)
- shopping_service.py (big pool)
- storage_service.py (small pool)
- main.py (main menu)
STORAGE - stores items to txt file serving as a database, remove request once completed but keep response as most recently added item (storage)
RECIPE - matches item to hard coded list of suggestions and sends the corresponding suggestion back to user (content generator from group work with bryant)
SHOPPING - saves item to list that persists even after the user closes the application
EXPIRATION - checks expiration date against hard coded date 2026, higher year returns good and lower year returns bad.
MAIN - main menu, allows users to interface with all the microservices