Live Service | | BDD UI Dashboard | | API Docs
The wishlists resource allow customers to create a collection of products that they wish they had the money to purchase. At a minimum it should contain references to a product. A customer might have multiple wish lists so they might want to name them for easy identification.
It's easiest to develop using Vagrant. After installing Vagrant run the following:
vagrant up
vagrant ssh
cd /vagrant
python run.py
and the server will be live on "http://localhost:5000"
If you can't or won't use Vagrant than you must install Redis then run the following commands:
virtualenv venv
./venv/bin/activate
pip install -r requirements.txt
python run.py
Unit tests and coverage are run after sshing into vagrant and going to the /vagrant
folder by running the following:
nosetests
BDD tests are run after sshing into vagrant and going to the /vagrant
folder by running the following:
behave