https://github.com/omdxp/chatapp
chat server with gRPC
https://github.com/omdxp/chatapp
grpc protobuf
Last synced: 9 months ago
JSON representation
chat server with gRPC
- Host: GitHub
- URL: https://github.com/omdxp/chatapp
- Owner: omdxp
- Created: 2022-08-10T21:13:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-10T22:14:10.000Z (over 3 years ago)
- Last Synced: 2025-04-23T20:47:53.133Z (12 months ago)
- Topics: grpc, protobuf
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chatapp
this chat tcp server is built with gRPC. messages are rpc streams.
# build server
```bash
docker build -t chatapp .
```
# run server
```bash
docker run -it -p 8080:8080 chatapp
```
# run client
```bash
go run client/main.go
```
you can run as many clients as you want.