Locally-stored recipes database application
Go to file
Andrew Lalis 17797eeb5f Removed food groups and ingredients from open recipe dialog. 2018-05-22 22:01:37 +02:00
Design Added design info to repository. 2018-03-31 22:51:02 +02:00
SQLite Added SQLite3 library, testing code. 2018-02-02 11:41:36 +01:00
fonts Added fonts, still need to implement. 2018-03-31 22:01:49 +02:00
gui Removed food groups and ingredients from open recipe dialog. 2018-05-22 22:01:37 +02:00
images Added icons for search criteria, fixed deleting image bug when editing. 2018-03-31 14:01:57 +02:00
model Removed recipe ingredient from the newrecipedialog methods. 2018-05-22 21:24:36 +02:00
utils Fixed unused variable issues. 2018-03-31 22:15:01 +02:00
.gitignore Updated README.md 2018-04-18 22:20:14 +02:00
README.md Updated README.md 2018-04-18 22:20:14 +02:00
RecipeDB.pro Removed recipeingredient headers, removed recipeingredient from recipe object. 2018-05-22 21:16:54 +02:00
main.cpp Made global font setting at app start. 2018-03-31 22:45:19 +02:00
res.qrc Fixed unused variable issues. 2018-03-31 22:15:01 +02:00
staticBuilder.sh Updated README.md 2018-04-18 22:20:14 +02:00

README.md

Recipe DB

screenshot

Recipe DB is a simple, lightweight database powered by Qt and SQLite to allow you to save, retrieve, and search through many recipes without needing to be connected to the internet. Meant as a tool for those who enjoy making recipes their own, this tool lets you edit recipes, search by ingredients or food groups, and filter out recipes that meet certain criteria. Recipe DB was created initially out of a desire to organize my many recipes in one uniform way, as simply as possible, while still making sure that retrieving any given recipe is as effortless as possible. I wanted something where I could save recipes offline, change them if I need to, convert units on-the-fly, and add a few other small utilities that would save a few precious minutes in the kitchen.

How it works

For the user interface, a Qt Application is built, both for ease of development, and the sleek, modern visual effects for which it is popular. To save the recipes, the world-famous SQLite embedded database engine was used. It is simply the most obvious choice for a locally stored relational database, and has proven its worth in billions of devices and applications. The filtering, searching, and other various operations used to store and retrieve data from the database is done through the use of SQL statements constructed around user-generated parameters.

To-Do List

  • Share Options:
    • Social Media
    • Email
    • Generate PDF, Word Document
  • More intuitive ingredient addition. It shouldn't be so tedious to add ingredients.
  • Automatic Unit conversion for ingredients, using pre-determined conversion rates.