This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring: | |
cloud: | |
clients: | |
hello-service: | |
health-check: | |
port: 9090 | |
path: xxx | |
interval: | |
hint: {} | |
discovery: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"openapi": "3.0.2", | |
"info": { | |
"title": "Swagger Petstore - OpenAPI 3.0", | |
"description": "This is a sample Pet Store Server based on the OpenAPI 3.0 specification. You can find out more about\nSwagger at [http://swagger.io](http://swagger.io). In the third iteration of the pet store, we've switched to the design first approach!\nYou can now help us improve the API whether it's by making changes to the definition itself or to the code.\nThat way, with time, we can improve the API in general, and expose some of the new features in OAS3.\n\nSome useful links:\n- [The Pet Store repository](https://github.com/swagger-api/swagger-petstore)\n- [The source API definition for the Pet Store](https://github.com/swagger-api/swagger-petstore/blob/master/src/main/resources/openapi.yaml)", | |
"termsOfService": "http://swagger.io/terms/", | |
"contact": { | |
"email": "[email protected]" | |
}, | |
"license": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Animal Rescue (multiple auths)", | |
"description": "Sample application for Spring Cloud Gateway commercial product demos.", | |
"version": "1.0.0-K8s-hack" | |
}, | |
"externalDocs": { | |
"url": "https://github.com/spring-cloud-services-samples/animal-rescue/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Animal Rescue AUX 3", | |
"description": "Sample application for Spring Cloud Gateway commercial product demos.", | |
"version": "1.0.0-K8s" | |
}, | |
"externalDocs": { | |
"url": "https://github.com/spring-cloud-services-samples/animal-rescue/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"openapi": "3.0.1", | |
"info": { | |
"title": "Animal Rescue v4", | |
"description": "Sample application for Spring Cloud Gateway commercial product demos.", | |
"version": "1.0.0-K8s" | |
}, | |
"servers": [ | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// -------------------------------------------------- | |
// Flexbox LESS mixins | |
// The spec: http://www.w3.org/TR/css3-flexbox | |
// -------------------------------------------------- | |
// Flexbox display | |
// flex or inline-flex | |
.flex-display(@display: flex) { | |
display: ~"-webkit-@{display}"; | |
display: ~"-moz-@{display}"; |