Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/cmilamaya/ms-stock-emazon
- Owner: CmilAmaya
- Created: 2024-08-18T14:16:40.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-08-23T16:50:24.000Z (4 months ago)
- Last Synced: 2024-08-24T17:12:53.052Z (4 months ago)
- Topics: spring-boot, spring-test
- Language: Java
- Homepage:
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 Installation1. Clone the repository:
```bash
git clone