This repository contains the code necessary for deploying a test application on Cloud Foundry using a Cloud Foundry-provided MySQL service
-
Target your Cloud Foundry installation:
cf login -a <cf-api-target> -o <org> -s <space>
-
Identify MySQL Configuration:
$ cf marketplace service plans description broker mysql db-small MySQL mysql-broker
-
Provision MySQL instance
cf create-service mysql db-small svc-test-mysql
-
Deploy application
cf push