https://github.com/daggerok/spring-boot-cloud-cli
spring boot / cloud CLI usage
https://github.com/daggerok/spring-boot-cloud-cli
spring-boot-cli spring-boot-cloud-cli spring-cloud-cli
Last synced: about 1 year ago
JSON representation
spring boot / cloud CLI usage
- Host: GitHub
- URL: https://github.com/daggerok/spring-boot-cloud-cli
- Owner: daggerok
- License: mit
- Created: 2018-08-05T12:33:57.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T03:02:38.000Z (over 7 years ago)
- Last Synced: 2025-01-10T00:42:24.543Z (about 1 year ago)
- Topics: spring-boot-cli, spring-boot-cloud-cli, spring-cloud-cli
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Spring Boot Cloud CLI image:https://travis-ci.org/daggerok/spring-cloud-examples.svg?branch=master["Build Status", link="https://travis-ci.org/daggerok/spring-cloud-examples"]
.1.1. install spring boot CLI on Mac OS X
[source,bash]
----
# 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:
[source,bash]
----
# 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):
[source,bash]
----
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
[source,bash]
----
spring cloud eureka configserver zipkin
----
.4. and more...
[source,bash]
----
spring cloud eureka configserver h2 kafka stubrunner zipkin
----
.5. list available apps
[source,bash]
----
spring cloud --list
----
NOTE: More details located link:http://cloud.spring.io/spring-cloud-cli/multi/multi__running_spring_cloud_services_in_development.html[here]
reference / documentation links:
- link:https://github.com/spring-projects/spring-boot[Install Spring Boot CLI]
- link:http://cloud.spring.io/spring-cloud-static/spring-cloud-cli/1.3.2.RELEASE/[Spring Boot Cloud CLI Reference]
- link:http://cloud.spring.io/spring-cloud-cli/[Spring Cloud CLI Home Page]
- link:http://cloud.spring.io/spring-cloud-cli/multi/multi_spring-cloud-cli.html[Spring Boot Cloud CLI: one more reference...]