Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

Latest commit

 

History

History
56 lines (40 loc) · 1.04 KB

DEMO.md

File metadata and controls

56 lines (40 loc) · 1.04 KB

Before a demo:

  1. login as a sandbox-only user (e.g. w/ @cao.org email account)
  2. delete all apps and services and routes
  3. make sure all the step below wor
  4. For a group walkthrough, set up an empty Windows box, then:
  • Install chocolatey
  • Install mysql client

Demo

We're using this as our standard demo app since a) it uses the Java buildpack, b) the code is pretty simple

Login

cf api https://api.fr.cloud.gov
cf login --sso

Show empty state

cf target
cf apps
cf services

Launch

cf push

During push, describe what's going on:

Staging

Connect up app to a database

cf marketplace
cf marketplace -s aws-rds
cf create-service aws-rds shared-mysql cf-spring-db
cf bind-service cf-spring cf-spring-db

Choose your own adventure

  • View the logs, command line and w/ Kibana
  • Connect to app with SSH
  • Connect to DB with connect-to-service
  • View other available services
  • Visit the dashboard

Clean up