From ce621bb3446bf2f3cf0ea448c7b726df87784b22 Mon Sep 17 00:00:00 2001 From: Emin Arslan Date: Sun, 16 Feb 2025 19:19:20 +0300 Subject: [PATCH] Added some explanations to README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 3d0e440..426f758 100644 --- a/README.md +++ b/README.md @@ -17,3 +17,10 @@ excellent. Install elixir and its build tool `mix` through your operating system's package manager, then run `mix run`. + +After the program starts, it will start listening for clients on port 8080. +You can connect with netcat or telnet, I haven't yet built a client for this. +There is no special protocol, the server simply broadcasts whatever you type +(it waits until you finish a full line). + +Building a client is left as an exercise for the reader