ThreeDotsLabs / nats-example

An example Go project for running local development environment, with hot code reloading.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nats-example

This is an example Go project for running local development environment. It features:

Read more in our blog post: Go Docker dev environment with Go Modules and live code reloading

asciicast

Running

To start the services, simply run:

docker-compose up

Open new terminal and send some messages:

$ curl localhost:5000 -d "this is my message"
Sent message: this is my message with ID 01D09P02SBW5D0QPWP14QQZJWH

You should see the messages in the subscriber service output:

subscriber_1  | [00] 2019/01/03 11:01:27 received message: 01D09P02SBW5D0QPWP14QQZJWH, payload: this is my message

About

An example Go project for running local development environment, with hot code reloading.

License:MIT License


Languages

Language:Go 96.3%Language:Dockerfile 3.7%