The shopping list is an application that allows users to record and share things they want to spend money on, hence meeting the needs of keeping track of their shopping lists.
The application has a couple of features as listed below:-
- Register
- Log In
- Create Shopping list
- Add shopping list items
- Edit Items
- Delete Items
To start using this application, first clone it to your local machine by running
git clone https://github.com/kisakyegordon/my-shopping-list
Create the virtual environment and activate it
virtualenv env
source env/bin/activate
Then install all the required dependencies
pip install -r requirements.txt
Then run the application
python run.py
To now view the application head over to
http://localhost:5000
You can then run the application tests using
cd my-shopping-list
nosetests tests/tests.py