├── .bintray.desc ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── LICENSE ├── NOTICE ├── README.md ├── ci └── travis_beforeDeploy.sh ├── docs └── app-content.pptx ├── manifest.yml ├── mvnw ├── mvnw.cmd ├── pom.xml ├── scripts └── build.sh └── src ├── main ├── java │ └── io │ │ └── pivotal │ │ └── education │ │ └── articulate │ │ ├── ArticulateApplication.java │ │ ├── cloud │ │ └── service │ │ │ ├── AttendeeWebServiceInfoCreator.java │ │ │ └── WebServiceInfo.java │ │ ├── controller │ │ ├── ArticulateController.java │ │ └── ArticulateRestController.java │ │ ├── model │ │ └── Attendee.java │ │ └── service │ │ ├── AttendeeService.java │ │ └── EnvironmentHelper.java └── resources │ ├── META-INF │ └── services │ │ └── org.springframework.cloud.cloudfoundry.CloudFoundryServiceInfoCreator │ ├── application.yml │ ├── public │ └── tutorial │ │ ├── basics-12f.html │ │ ├── basics-desc.html │ │ ├── bluegreen-12f.html │ │ ├── bluegreen-desc.html │ │ ├── index-12f.html │ │ ├── index-desc.html │ │ ├── services-12f.html │ │ └── services-desc.html │ ├── static │ └── images │ │ ├── P_Mark_WhiteOnTeal.png │ │ ├── basics1.png │ │ ├── bluegreen1.png │ │ ├── icon_cf_green.png │ │ ├── index1.png │ │ └── index2.png │ └── templates │ ├── basics.html │ ├── bluegreen.html │ ├── fragments │ ├── layout.html │ └── list.html │ ├── index.html │ └── services.html └── test └── groovy └── io └── pivotal └── education └── articulate └── HealthSpec.groovy /.bintray.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/.bintray.desc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/README.md -------------------------------------------------------------------------------- /ci/travis_beforeDeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/ci/travis_beforeDeploy.sh -------------------------------------------------------------------------------- /docs/app-content.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/docs/app-content.pptx -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/manifest.yml -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/pom.xml -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/ArticulateApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/ArticulateApplication.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/cloud/service/AttendeeWebServiceInfoCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/cloud/service/AttendeeWebServiceInfoCreator.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/cloud/service/WebServiceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/cloud/service/WebServiceInfo.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/controller/ArticulateController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/controller/ArticulateController.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/controller/ArticulateRestController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/controller/ArticulateRestController.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/model/Attendee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/model/Attendee.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/service/AttendeeService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/service/AttendeeService.java -------------------------------------------------------------------------------- /src/main/java/io/pivotal/education/articulate/service/EnvironmentHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/java/io/pivotal/education/articulate/service/EnvironmentHelper.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/org.springframework.cloud.cloudfoundry.CloudFoundryServiceInfoCreator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/META-INF/services/org.springframework.cloud.cloudfoundry.CloudFoundryServiceInfoCreator -------------------------------------------------------------------------------- /src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/basics-12f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/basics-12f.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/basics-desc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/basics-desc.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/bluegreen-12f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/bluegreen-12f.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/bluegreen-desc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/bluegreen-desc.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/index-12f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/index-12f.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/index-desc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/index-desc.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/services-12f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/services-12f.html -------------------------------------------------------------------------------- /src/main/resources/public/tutorial/services-desc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/public/tutorial/services-desc.html -------------------------------------------------------------------------------- /src/main/resources/static/images/P_Mark_WhiteOnTeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/static/images/P_Mark_WhiteOnTeal.png -------------------------------------------------------------------------------- /src/main/resources/static/images/basics1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/static/images/basics1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/bluegreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/static/images/bluegreen1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/icon_cf_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/static/images/icon_cf_green.png -------------------------------------------------------------------------------- /src/main/resources/static/images/index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/static/images/index1.png -------------------------------------------------------------------------------- /src/main/resources/static/images/index2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/static/images/index2.png -------------------------------------------------------------------------------- /src/main/resources/templates/basics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/templates/basics.html -------------------------------------------------------------------------------- /src/main/resources/templates/bluegreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/templates/bluegreen.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/templates/fragments/layout.html -------------------------------------------------------------------------------- /src/main/resources/templates/fragments/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/templates/fragments/list.html -------------------------------------------------------------------------------- /src/main/resources/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/templates/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/services.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/main/resources/templates/services.html -------------------------------------------------------------------------------- /src/test/groovy/io/pivotal/education/articulate/HealthSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-archive/pcf-articulate-code/HEAD/src/test/groovy/io/pivotal/education/articulate/HealthSpec.groovy --------------------------------------------------------------------------------