My wife and I have a hard time planning what to have to dinner. I created a little Django/React app to help us out. I wanted a place where we could save meals and recipes and then assign them to one of the next several days.
Basically, you fill the sidebar with recipes and/or meals, and then drag and drop them onto days.
- Add new recipes
- Edit existing recipes
- Delete recipes you never want to eat again
- Search for recipes
- Python 3
- virualenv
- Postgres
- Clone the repo:
git clone git@github.com:calebrash/wawhfd.git && cd wawhfd
- Create a virtualenv:
mkvirtualenv -ppython3 wawhfd
- Create database and install dependencies:
make init
- Run migrations:
make migrate
- Run the server:
make server
Want to make changes? You'll need to install webpack (npm install -g webpack
) and then run make dev
to build static files.