Base application to demonstrate TAS
As you all know, we often transform other work into our own. This is all based from Andrew Ripka's cf-workshop-spring-boot github repo with some basic modifications.
This base application is intended to demonstrate some of the basic functionality of tas ERS:
- tas api, target, login, and push
- tas environment variables
- Spring Cloud Profiles
- Scaling, self-healing, router and load balancing
- RDBMS service and application auto-configuration
- Blue green deployments
Prerequisites
Building
$ git clone [REPO]
$ cd [REPO]
$ ./mvnw clean install
The application is set to use an embedded H2 database in non-PaaS environments, and to take advantage of Vmware CF's auto-configuration for services. To use a MySQL Dev service in tas, simply create and bind a service to the app and restart the app. No additional configuration is necessary when running locally or in Vmware CF.
In Vmware CF, it is assumed that a Vmware MySQL service will be used.
$ ./mvnw spring-boot:run
Then go to the http://localhost:8080 in your browser
Take a look at the manifest file for the recommended setting. Adjust them as per your environment.
We have a Labs folder to help you learn tas. These labs can be used for workshops or self-training.