DevOpsWishlist / wishlists

A collection of lists of products I wish I had
Apache License 2.0
0 stars 0 forks source link

wishlists

Build Status codecov

A collection of lists of item products I wish I had

These are the RESTful routes for wishlists and items

Endpoint          Methods  Rule
----------------  -------  -----------------------------------------------------
index             GET      /

list_wishlists     GET      /wishlists
create_wishlists   POST     /wishlists
get_wishlists      GET      /wishlists/<wishlist_id>
update_wishlists   PUT      /wishlists/<wishlist_id>
delete_wishlists   DELETE   /wishlists/<wishlist_id>

list_items    GET      /wishlists/<int:wishlist_id>/items
create_items  POST     /wishlists/<wishlist_id>/items
get_items     GET      /wishlists/<wishlist_id>/items/<item_id>
update_items  PUT      /wishlists/<wishlist_id>/items/<item_id>
delete_items  DELETE   /wishlists/<wishlist_id>/items/<item_id>

vagrant up vagrant ssh cd /vagrant/

FLASK_APP=service:app flask run -h 0.0.0.0

nosetests

exit vagrant halt