A little exercise to build a web application following an agile development process. See the instructions for more detail.
A recipe tracking app that'll guarantee you never forget what to pick up from the grocery store.
- Download repository
python3 -m venv myenv
source myenv/bin/activate
pip3 install -r requirements.txt
python app.py
OR using pipenv
pip install pipenv
pipenv shell
pip3 install -r requirements.txt