Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamreeve/comments-app-go-rabbit-react
A comments app using React, Go and Rabbit MQ
https://github.com/adamreeve/comments-app-go-rabbit-react
Last synced: 15 days ago
JSON representation
A comments app using React, Go and Rabbit MQ
- Host: GitHub
- URL: https://github.com/adamreeve/comments-app-go-rabbit-react
- Owner: adamreeve
- Created: 2016-05-10T09:21:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-10T09:41:28.000Z (over 8 years ago)
- Last Synced: 2024-10-31T22:09:49.345Z (2 months ago)
- Language: Go
- Size: 138 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A Websocket based Comments App
==============================A comments application based on the official [React tutorial](http://facebook.github.io/react/docs/tutorial.html)
with a websocket server implemented with Go and RabbitMQ.Just a work-in-progress toy project.
Usage
-----To build everything:
```
make
```Then run rabbit MQ in a Docker container:
```
make rabbit
```Run the websocket service:
```
make serve
```And run a webserver to serve the front end:
```
python -m SimpleHTTPServe
```
The application can then be acessed at http://localhost:8000