November 2017
Beginner to intermediate
306 pages
7h 43m
English
In order to get a deployable version of the Spring Music application, we will need to download it from a code repository online and build it. We do this, as follows:
$ git clone https://github.com/cloudfoundry-samples/spring-music
$ cd ./spring-music
On Unix-like platforms such as Linux and macOS X that do not yet have Gradle installed, use:
$ ./gradlew clean assemble
Unix-like platforms such as Linux and macOS X that do have Gradle installed, use:
$ gradle clean assemble ...
Read now
Unlock full access