In this chapter we will take what we have built so far and deploy it to production. Production systems are those whose purpose is to be utilized by end users.
Generally, we can have many environments available on the Internet, depending on their audience. Some commonly used environments are “production” for the live site and “staging” for the upcoming release, normally accessible to only a select number of people.
This chapter presents a way to deploy an environment regardless of its purpose.
Minifying JS/CSS
The first good practice when you deploy a website is to make sure ...