Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jacky-htg/inventory-service
Inventory service using golang grpc and postgresql. This service is part of ERP microservices.
https://github.com/jacky-htg/inventory-service
erp-systems golang grpc grpc-go inventory microservices
Last synced: about 1 month ago
JSON representation
Inventory service using golang grpc and postgresql. This service is part of ERP microservices.
- Host: GitHub
- URL: https://github.com/jacky-htg/inventory-service
- Owner: jacky-htg
- License: gpl-3.0
- Created: 2021-01-16T05:25:48.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-01T09:37:44.000Z (6 months ago)
- Last Synced: 2024-08-01T11:05:46.033Z (6 months ago)
- Topics: erp-systems, golang, grpc, grpc-go, inventory, microservices
- Language: Go
- Homepage:
- Size: 381 KB
- Stars: 11
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# inventory-service
Inventory service using golang grpc and postgresql.
- The service is part of ERP microservices.
- The service will be call in local network.
- Using grpc insecure connection## Get Started
- git clone [email protected]:jacky-htg/inventory-service.git
- make init
- cp .env.example .env (and edit with your environment)
- make migrate
- make seed
- make server
- You can test the service using `go run client/main.go` and select the test case on file client/main.go## Features
- [X] Products
- [X] Product Categories
- [X] Product Barcode
- [X] Brands
- [X] Warehouses
- [X] Shelves
- [X] Good Receivings
- [X] Receiving Returns
- [X] Delivery Orders
- [X] Delivery Returns
- [ ] Internal Warehouse Mutations
- [ ] External Warehouse Mutations
- [ ] Stock Opname
- [X] Stock Information
- [X] Product Track History
- [X] Closing Stocks## How To Contribute
- Give star or clone and fork the repository
- Report the bug
- Submit issue for request of enhancement
- Pull Request for fixing bug or enhancement module## License
[The license of application is GPL-3.0](https://github.com/jacky-htg/user-service/blob/main/LICENSE), You can use this apllication for commercial use, distribution or modification. But there is no liability and warranty. Please read the license details carefully.## Link Repository
- [API Gateway for ERP](https://github.com/jacky-htg/api-gateway-service)
- [User Service](https://github.com/jacky-htg/user-service)
- [Sales Service](https://github.com/jacky-htg/sales-service)
- [Purchase Service](https://github.com/jacky-htg/purchase-service)
- [General Ledger Service](https://github.com/jacky-htg/ledger-service)
- [Simple gRPC Skeleton](https://github.com/jacky-htg/grpc-skeleton)