Reputation: 37
I am in the process of completing the Cloud Application Developer Certification developerWorks Course.
In Module 3 (Implementing cloud-ready applications) and section 3.3 (Debugging in Bluemix), I set the application instance in development mode by adding this environment variable to the manifest.yml file:
ENABLE_BLUEMIX_DEV_MODE: "true"
What options are available to revert this change for this application instance?
Upvotes: 0
Views: 91
Reputation: 282
I reviewed the course and I agree it is an interesting course. To remove the development mode from the application you should perform the following steps.
env:
ENABLE_BLUEMIX_DEV_MODE: “true”
$ cf login –a <api endpoint for your Bluemix region>
$ cf delete <application_name>
$ cf push
Upvotes: 2