28 lines
411 B
Markdown
28 lines
411 B
Markdown
# Threaded Network Chat
|
|
|
|
## TODO
|
|
|
|
- Finalize coding style,
|
|
- **see [STYLE.md](STYLE.md)**
|
|
- Get everyone's editors set up for clangd/clang-format and git
|
|
- Make sure everyone's compiler toolchains work
|
|
- Assign responsibilities to each team member
|
|
|
|
## Build
|
|
|
|
```
|
|
make
|
|
```
|
|
|
|
## Usage
|
|
|
|
```
|
|
./ct # run as server
|
|
```
|
|
|
|
```
|
|
./ct client # run as client
|
|
```
|
|
|
|
Chat logs are stored in `./server.txt` and `./client.txt`.
|