Inside the root directory:
mvn clean install
docker image build -t watson-menu .
Run the complete Spring Boot App:
mvn --projects backend spring-boot:run
With options for intellij remote debugging:
mvn --projects backend spring-boot:run -Dspring-boot.run.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"
(and launching remote debugging in intellij of course :P)
Launching the app with postgres profile:
mvn -Dspring-boot.run.profiles=postgres --projects backend spring-boot:run
npm run serve