shopping list app is an application that allows users to record and share things they want to spend money on meeting the needs of keeping track of their shopping lists.
- Clone this repo into any directory in your machine
https://github.com/esirK/ShoppingList.git
- Ensure you have python 3.6 and virualenv installed in your machine by running
python --version
andvirtualenv --version
respectively. - Create a virtual environment for the project and activate it:
virtualenv venv
Thensource env/bin/activate
For Windows Use
\path\to\env\Scripts\activate
- Move to the app directory
cd ShoppingList
- Install the required packages:
pip install -r requirements.txt
Create an Environment variable in your local machine with the name SECRET_KEY and set the value to a your own secret key
run the app with the command: python run.py runserver
Automated Tests Can Be run Simply by typing
nosetests
To Run A Specific Test us
nosetests /path/to/test.py