java
make
Clone the repository:
git clone https://github.com/cs3524-lima/messenger-assessment.git
Navigate to the directory:
cd messenger-assessment/messenger
Compile the server and client files using the makefile:
make
alternatively if make isn't installed compile all via
javac shared/*.java server/*.java client/*.java
java server.StartChatServer
java client.StartClient
The client must be running at the same time as the server.
While both server and client are running, you will be able to send messages through the client. More than one instance of the client can run and they will be able to relay messages to each other through the server.