hello! we need to work with nordcraft for an university project.
we designed an app called dishdash. the idea is to work with smart fridges and recipes to generate shopping lists on the go 🙂 the idea is to have a smart fridge that knows all the items in stock and have recipes on site. then the app will crate a shopping list, so that you just shop for the items you dont already have.
we already designed the ui, but we are a bit lost implementing the functionality, because we don't really understand how to use formulas correctly.
we just need to get a prototype going. so i thought of the following:
- store the items currently in the fridge in a data structure (array or list)
- store the items of the recipe in another data structure (also array or list)
- generate a new shopping list (items in recipe, subtract items already in fridge)
since its a prototype, we want to hardcode the items and dont want to implement a full working backend just yet. i'm a bit lost on how to get started. and currently our app works with different sites, connected by a taskbar.
is there a way to have persistent data, that all the different sites could access? and what is the most simple way to get the shopping list generation done?
thank you so much in advance!