Solution: Deploying APIs
Discover how to automate the final step of deploying your API to Heroku by customizing the Norman test runner script. This lesson guides you through setting up continuous deployment, integrating testing and automatic production deployment, so you can efficiently deploy your API projects to the cloud.
We'll cover the following...
Background
Most of the work of deploying our API project into production is handled by the Heroku CLI Client we reviewed previously. However, we need to manually deploy the application (in other words, type in the proper command in the command window) in order to complete the deployment process. That means our current level of automation is at continuous delivery.
This challenge was for you to elevate your deployment automation to continuous deployment. In other words, to automate that last step of deploying into production. To do that, you were given a hint to modify the norman test runner tool we used previously, to not only automate ...