Install instructions - Pihl17/PCSS2018---TheRealGroup1-Client GitHub Wiki
Compiling and running the Client
Command-line / Terminal
- git cloneThe repository to a folder
- javacCompile the files in the src/Client folder
- javaLaunch the Client with- ipand- portas first and second argument
Eclipse
- git cloneThe repository to a folder
- Open the project in eclipse by adding the entire project, and choose the Client.java main as the primary main-class
- In the run configuration, remember to set the ipandportas the first and second argument, An example could be;127.0.0.1 8080inside the configuration
- Runthe Client
Downloading the binary/jar and running the server
Command-line / Terminal
- Downloadthe- Client.jarbinary from the release here
- java -jarthe- Client.jarto launch it, remember to apply the- ipand- portarguments as the first and second An example could be;- java -jar Client.jar 127.0.0.1 8080
Eclipse
- Downloadthe- Client.jarbinary from the release here
- Setup the configuration, remember to add the ipandportarguments as the first and second An example for the arguments could be;127.0.0.1 8080
- Run the .jar File.
Installing the Server
See Server installation & run for the Server instructions