Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Spring Boot Cloud CLI Build Status

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"
sdk install springboot
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: 1.3.3):
spring install org.springframework.cloud:spring-cloud-cli:1.3.3.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: