Skip to content

nandangrover/go-microservices

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker for dummies

Microservices in GO

Objective

  • Make a microservices architecture in GO which is ready for production.
  • Create a dummy coffee shop for this purpose.

Environment

  • Server: GO
  • Client: React
  • Database: Not decided yet

Commands

go run main.go - To run the server curl -v localhost:9090 -d "World" - To send API calls from terminal to go runtime

GET

curl -v localhost:9090

POST

curl -v localhost:9090 -XPOST -d {"id": 1, "name": "Tea", "description": "Cuppa Tea", "price": 10}

PUT

curl -v localhost:9090/2 -XPUT -d {"name": "Frappuccino", "description": "Cuppa frappuccino", "price": 100}

Hosted links

  • Will update when hosted

Production setup

  • Will update when setup is complete

About

Microservices in GO

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages