An easy simple terminal chatting app, for the rare occasions you are on some device where
you don't wanna install anything properly and you wanna talk with people on your local network
- Clone the repo:
git clone https://github.com/Blize/Zignal- Build the Application:
cd Zignalzig buildcd zig-out/bin- Go to Usage
Note
Currently there is max of 10 users (defined in config.zig)
You can change that, just know that one user is one OS thread!
Inside zig-out/bin or wherever the binary is, you have the following options:
Write following command:
./Zignal serverNow people in your netowrk should be able to join on your IP and PORT.
For joining go to the following step.
Note
Sometimes your PC doesnt allow Network connections from unknown binary's
Either try to give the correct rights to the binary or disable your firewall
To join as a Client you can either use localhost (if the Server is on the same device) or join with IP and PORT. Command:
./Zignal client [IP] [PORT]For help write:
./Zignal -hOutput:
Usage: ./Zignal <server|client> [IP] [PORT]
Options:
  server                Start the server.
  client <IP> <PORT>    Start the client and connect to the specified IP and PORT.
Examples:
  ./Zignal server
  ./Zignal client 127.0.0.1 8080I want to make an actual clean TUI for the Clients and then the Server with Vaxis. That includes:
- 
Client: - Input Box
- Chat Box
- Add other Chats box
 
- 
Server: - Server Log Box
- Nicer colors / Filtering between certain types of logs
 
