From 9977314a4305a1d439f423a1f9ac278b666104d6 Mon Sep 17 00:00:00 2001 From: Rachel Johnson Date: Fri, 1 Oct 2021 18:09:00 +1000 Subject: [PATCH 1/2] Add Meal Planner & Shopping List Generator --- Projects/2-Intermediate/Meal-Planner-App.md | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Projects/2-Intermediate/Meal-Planner-App.md diff --git a/Projects/2-Intermediate/Meal-Planner-App.md b/Projects/2-Intermediate/Meal-Planner-App.md new file mode 100644 index 00000000..d7fce39e --- /dev/null +++ b/Projects/2-Intermediate/Meal-Planner-App.md @@ -0,0 +1,22 @@ +# Meal Planner & Shopping List Generator + +**Tier:** 2-Intermediate +The purpose of this application is to make meal-planning and shopping much easier! This app allows users to input recipes that they like, with clear instructions and accurate ingrdients. User should also be able to enter relevant information about what can be bought from supermarkets (eg, 100g of cheese). The app will whip up a weekly/bi-weekly (user choice!) meal plan with shopping list to make life much easier. It'll take into account shopping quantities and be sure to bundle meals together so you will use up that entire 100g of cheese. No more food waste! + +Users will need recipes of their own, and knowledge of their supermarket stock. + + +## User Stories + +- [ ] User can input all their favorite recipes +- [ ] User can input common grocery items and the weights/amount that is commonly sold in stores (eg, milk can be bought in 1L or 2L) +- [ ] User can denote if they want to meal-plan/shop for 1 week or 2 weeks +- [ ] User can sit back and watch their meals and shopping list be planned for them! + +## Bonus features + +- [ ] User can add specialty tags, like 'must-have' so the app is sure to include that meal for that period of time + +## Useful links and resources + +- [Great recipes] (https://www.bestrecipes.com.au/) From 8a66dd41706a14acf382de0916cc5a055bc5f4d1 Mon Sep 17 00:00:00 2001 From: Rachel Johnson Date: Fri, 1 Oct 2021 18:10:06 +1000 Subject: [PATCH 2/2] Add meal planner to index --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index f6557617..99b62819 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ required to complete them. | [Markdown Previewer](./Projects/2-Intermediate/Markdown-Previewer.md) | Preview text formatted in GitHub flavored markdown | 2-Intermediate | | [Markdown Table Generator](./Projects/2-Intermediate/Markdown-Table-Generator.md) | Convert a table into Markdown-formatted text | 2-Intermediate | | [Math Editor](./Projects/2-Intermediate/math-editor.md) | A math editor for students to use | 2-Intermediate | +| [Meal Planner App](./Projects/2-Intermediate/Meal-Planner-App.md) | A meal-planner + shopping list app | 2-Intermediate | | [Meme Generator App](./Projects/2-Intermediate/Meme-Generator-App.md) | Create custom memes | 2-Intermediate | | [Name Generation using RNNs](./Projects/2-Intermediate/Name-Generator.md) | Generate names using names dataset | 2-Intermediate | | [Password Generator](./Projects/2-Intermediate/Password-Generator.md) | Generate random passwords | 2-Intermediate |