KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
golang-microservice-apps
★ 12
Open GitHub ↗
sample go microservice apps
Download README (.md)
Explore Similar Repositories
Minimal_E-Bike_Torquesensor_Precontroller
:
based on a digispark
gameoflife
:
Conway's Game of Life, in PyTorch, using convolutions
zabbix-impersonator
:
zabbix to prometheus adapter
ribbot
:
Script for querying merged PRs, open issues, and closed issues from config repos.
ExplorerPy
:
A software for mapping energy landscape with a variety of methods, using classical potentials. Based on the LAMMPS MD package.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
golang-microservice-apps
?
Download (.md)
# Sample Golang Microservices with Kafka and Mongodb Sample Golang Microservices Micro app : request to kafka Micro app k2m : kafka to mongodb  ------------------------- - [Requirements](#requirements) - [Installation](#installation) - [Usage](#usage) ------------------------- ## Requirements - Docker ------------------------- ## Installation cd micro_app docker-compose up -d cd micro_app_k2m docker-compose up -d ------------------------- ## Usage ### API Resources - [POST /items](#post-items) - [GET /items](#get-items) - [GET /items/[id]](#get-item) ### POST /items Example: http://localhost:8000/items Request body: { "title": "item title", "description":"item description", "company":"item company", "price":1240, "currency":"EUR" } ### GET /items Example: http://localhost:8000/items Response body: [ { "_id": "5e329bd8b01422d7e0936ffa", "title": "item title ", "description": "item description ", "company": "item company", "price": 1240, "currency": "EUR", "createdAt": "2020-01-30T09:03:20.707Z" } ] ### GET /items/[id] Example: http://localhost:8000/items/5e329bd8b01422d7e0936ffa Response body: { "_id": "5e329bd8b01422d7e0936ffa", "title": "item title ", "description": "item description", "company": "item company", "price": 1240, "currency": "EUR", "createdAt": "2020-01-30T09:03:20.707Z" }