This is a group project copied from the main repository!
Project includes both client and server code.
To start the Java client: ./gradlew run
or use Tasks -> Application -> Run in the IntelliJ Gradle window
Code located in: src/main/java/starb/client
Start server (see below) first, then open browser and go to:
http://localhost:3390/client/index.html
HTML/JS/CSS files located under: static/client
Port number is configured in: src/main/resources/application.properties
To start the server: ./gradlew bootRun
or use Tasks -> application -> bootRun in the
IntelliJ Gradle window.
Tests are located in src/test/java
. To execute tests using IntelliJ,
use the green arrow. To execute using Gradle run:
./gradlew test