Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cmilamaya/ms-stock-emazon

This repository contains the microservice for managing stock in the Emazon web platform. It handles the storage, retrieval, and management of product stock information, including quantities and related attributes. The microservice is built with Spring Boot and connects to a MySQL database to maintain up-to-date inventory records.
https://github.com/cmilamaya/ms-stock-emazon

spring-boot spring-test

Last synced: about 2 months ago
JSON representation

This repository contains the microservice for managing stock in the Emazon web platform. It handles the storage, retrieval, and management of product stock information, including quantities and related attributes. The microservice is built with Spring Boot and connects to a MySQL database to maintain up-to-date inventory records.

Awesome Lists containing this project

README

        

# Microservice for Stock

## Overview

This microservice handles stock management functionalities including categories, brands, and articles. It supports creating and listing these entities.

## User Stories

### 1. Create Category
- **Description**: Allows the creation of a new category.
- **Endpoints**:
- `POST /categories`

### 2. List Categories
- **Description**: Retrieves a list of all categories.
- **Endpoints**:
- `GET /categories`

### 3. Create Brand
- **Description**: Allows the creation of a new brand.
- **Endpoints**:
- `POST /brands`

### 4. List Brands
- **Description**: Retrieves a list of all brands.
- **Endpoints**:
- `GET /brands`

### 5. Create Article
- **Description**: Allows the creation of a new article.
- **Endpoints**:
- `POST /articles`

### 6. List Articles
- **Description**: Retrieves a list of all articles.
- **Endpoints**:
- `GET /articles`

## Setup and Installation

1. Clone the repository:
```bash
git clone