Simple console chat written with Go for educational purposes with usage of goroutines and channels.
Clone repository and start main program:
git clone https://github.com/kakov1/GoChat
cd GoChat/src/
go run chat.go
You can deploy application in docker container. Use:
docker compose up
Choose any free port in program code and connect from console with:
telnet localhost "your_port"
(standard port 8000)
After successful connection every client can send messages, which will see all chat's participants. You can leave chat with "/exit".
