Skip to content

CSCI-GA-2820-FA22-001/inventory

Repository files navigation

Inventory

Build Status codecov License Python

Overview

This repository contains the work done by the Inventory Squad as a part of DevOps course in Fall '22 by John Rofrano.

Description

The inventory resource keeps track of how many of each products we have in our warehouse. At a minimum it should reference a product and the quantity on hand. Inventory should also track restock levels and the condition of the item (i.e., new, open box, used) as an enumeration. Restock levels will help you know when to order more products. Being able to query products by their condition (e.g., new, used) could be very useful. A good action for the inventory API is to be able to activate and deactivate an inventory item.

Squad Members

Name NYU netID
Arpan Ghoshal [email protected]
Qiyuan Huang [email protected]
Shantanu Mahapatra [email protected]
Swapnil Gupta [email protected]
Nava Hirschorn [email protected]

API Endpoints

TODO

How to run and test locally

git clone [email protected]:DevOps-Fall2022-Inventory/inventory.git
## To run, open in VSCode and run it in a docker container
## In the docker container, to launch the app on local server:
honcho start
## To run tests
nosetests