1.1. install spring boot CLI on Mac OS X
# mac os x:
brew tap pivotal/tap
brew search spring
brew install springboot
# sdkman (bash):
curl -s "https://get.sdkman.io" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
# latest stable version of Spring Boot CLI (for me at the moment is: 2.0.4)
sdk install springboot 2.0.4.RELEASE
sdk ls springboot
# mac ports:
sudo port install spring-boot-cli
# windows scoop
scoop bucket add extras
scoop install springboot
1.2. in addition you can install command line complition:
# sdkman in bash:
. ~/.sdkman/candidates/springboot/current/shell-completion/bash/spring
# mac os x homebrew:
brew search spring
brew install spring-completion
2. install latest stable version of Spring Cloud CLI (for me at the moment is: 2.0.0):
spring install org.springframework.cloud:spring-cloud-cli:2.0.0.RELEASE
Note
|
check latest stable version on home page: https://cloud.spring.io/spring-cloud-cli/ |
3. bootstrap needed spring-cloud services
spring cloud eureka configserver zipkin
4. and more…
spring cloud eureka configserver h2 kafka stubrunner zipkin
5. list available apps
spring cloud --list
Note
|
More details located here |
reference / documentation links: