- Install Java 8: Go to https://adoptopenjdk.net/ and download version 8. If the Operating System is Windows: set the system environments for
JAVA_HOME
(jdk root folder) andPATH
(jdk root folder\bin) - To start the backend run
mvnw spring-boot:run
command (control + c will kill the application) - Build the frontend:
cd src/frontend
,yarn
. (installyarn
andnode
if needed) - To start the frontend go to
src/frontend
and runyarn start
. It will run onlocalhost:3000
.