- Make a microservices architecture in GO which is ready for production.
- Create a dummy coffee shop for this purpose.
- Server: GO
- Client: React
- Database: Not decided yet
go run main.go
- To run the server
curl -v localhost:9090 -d "World"
- To send API calls from terminal to go runtime
curl -v localhost:9090
curl -v localhost:9090 -XPOST -d {"id": 1, "name": "Tea", "description": "Cuppa Tea", "price": 10}
curl -v localhost:9090/2 -XPUT -d {"name": "Frappuccino", "description": "Cuppa frappuccino", "price": 100}
- Will update when hosted
- Will update when setup is complete