# Java
sudo apt install openjdk-17-jdk openjdk-17-jre
# Node.js
curl -sL https://deb.nodesource.com/setup_14.x | sudo bash -
sudo apt -y install nodejs
npm installcd backend/
./mvnw compile exec:javacd frontend/
npm run-script startcd backend/
./mvnw compile test
cd ../frontend/
npm run-script testcd backend/
mvn javadoc:javadoc # Generate the javadoc using maven (the output is in target/site/apidocs).