Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wallyqs/kubecon-nats-2018-tutorial
KubeCon 2018 - NATS Tutorial
https://github.com/wallyqs/kubecon-nats-2018-tutorial
Last synced: 2 months ago
JSON representation
KubeCon 2018 - NATS Tutorial
- Host: GitHub
- URL: https://github.com/wallyqs/kubecon-nats-2018-tutorial
- Owner: wallyqs
- Created: 2018-12-10T10:51:55.000Z (about 6 years ago)
- Default Branch: tutorial
- Last Pushed: 2018-12-11T18:34:21.000Z (about 6 years ago)
- Last Synced: 2024-10-17T19:55:00.425Z (2 months ago)
- Language: Go
- Homepage: https://nats.io
- Size: 37.1 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### KubeCon 2018
#### Developing Production Ready Cloud Native NATS Applications
Download the source
```sh
git clone https://github.com/wallyqs/kubecon-nats-2018-tutorial.git
```If you choose to just read along the just use the `complete` branch:
```sh
git checkout complete
```#### Running the components
First get NATS Server and a NATS client:
```sh
go get -u github.com/nats-io/gnatsd
go get -u github.com/nats-io/go-nats
```Starting the components:
```sh
gnatsd -DV -m 8222# Starting the API Server
go run cmd/api-server/main.go# Start the NYFT Agents
go run cmd/driver-agent/main.go# Start the NYFT Service
go run cmd/rides-manager/main.go
```