Se requiere una API para un sistema de tiendas, donde cada sucursal tenga su stock, como también pueda revisar sus ventas, los productos deben de tener categoría, ejemplo: Lácteos, Refrescos, la API debe contener documentación, seguridad por token paginación para cada servicio, Se deberá contar con pruebas de código (recomendamos usar jest, supertes), se deberá también contar con un ORM (recomendación Sequelize) para todo el acceso a datos.
# run
$ docker-compose up -d
# stop
$ docker-compose down
Install dependencies for tests
$ npm install
# all tests
$ npm run test
# unit tests
$ npm run test:unit
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
API documentation is available by running the app and going to the link http://localhost:5000/api/docs
baseUrl
= http://localhost:5000/api
- Sign in on
{baseUrl}/auth/signin
- Add branch office on
{baseUrl}/branch-offices
- Add product category on
{baseUrl}/product-categories
- Add product on
{baseUrl}/products
using the product category id - Add stock on
{baseUrl}/stock
using the product id and branch office id - Add sale order on
{baseUrl}/sale-orders
using the branch office id - Append sales to the sale order on
{baseUrl}/sales
using the sale order id and product id - Set as paid or cancelled a sale order on
{baseUrl}/sale-orders/{sale-order-id}/{cancel|pay}
- Refresh the access token on
{baseUrl}/auth/refresh
Made with ❤️ by Esteban Alvarez