-
Need to have Java 8 installed. This guide will assume you are running Ubuntu 16.04 LTS 64bit. If you don't have the following packages installed globally, run these commands below:
sudo apt update sudo apt upgrade sudo apt install openjdk-8-jdk openjdk-jre maven
If you don't have Intellij installed, please proceed in installing the IDE.
-
Clone this repo.
-
Once Intellij is open, proceed on opening the project using the open project settings Intellij presents to you on the welcome screen or under
File
in the application bar. -
Follow any prompts for importing dependencies. Proceed to build the dependencies and click
run
. -
The application should start and should be accessible in your web browser using the address
localhost:4567
. -
You may use Intellij to run the unit tests or in the command line of the project using Maven by running
mvn test
. -
To run Maven test with Coveralls, add the Coveralls token in
pom.xml
for a successful run of the tests. To run the test, runmvn clean test jacoco:report coveralls:report
. Refer to the documentation on Coveralls on adding the Coveralls token.