Some information about this project
You can run the application from the terminal with the following command:
$ ./gradlew bootRun
You can build a single executable JAR file that contains all the necessary dependencies, classes, and resources, and run that. This makes it easy to ship, version, and deploy the service as an application throughout the development lifecycle, across different environments, and so forth. You can build the JAR file using:
$ ./gradlew bootJar
Then you can run the JAR file:
$ java -jar build/libs/wa-discovery-service-${VERSION}.jar
You first need to build (the newest) JAR file:
$ ./gradlew bootJar
Then you can build the docker image using:
$ docker-compose up -d