diff --git a/websockets/chat-tcp/README.md b/websockets/chat-tcp/README.md index 63d8051..5d6dc01 100644 --- a/websockets/chat-tcp/README.md +++ b/websockets/chat-tcp/README.md @@ -18,7 +18,14 @@ Chat server listens for incoming tcp connections. Server can access several type - `some message` - just string, send message to all peers in same room - client has to send heartbeat `Ping` messages, if server does not receive a heartbeat message for 10 seconds connection gets dropped -To start server use command: `cargo run --bin websocket-tcp-server` +To start server run + +```sh +cd websockets/chat-tcp +cargo run --bin websocket-tcp-server` +``` + +If the current directory is not correct, the server will look for `index.html` in the wrong place. ## Client