29 lines
383 B
Markdown
29 lines
383 B
Markdown
# chat.go
|
|
|
|
Rudimentary go chat server as a fun project.
|
|
|
|
# Install
|
|
|
|
```bash
|
|
git clone https://git.coolaj86.com/coolaj86/chat.go.git
|
|
go get gopkg.in/yaml.v2
|
|
```
|
|
|
|
# Usage
|
|
|
|
**Start the server**
|
|
|
|
```bash
|
|
go run chatserver.go -conf ./config.yml
|
|
```
|
|
|
|
See sample config file at `config.sample.yml`.
|
|
|
|
**Connect clients**
|
|
|
|
You can connect multiple clients.
|
|
|
|
```bash
|
|
telnet localhost 4080
|
|
```
|