September 2014
Intermediate to advanced
316 pages
7h 6m
English
Some readers may be getting nervous at this point in the book. I don't blame them. This is because there are still some very large, glaring issues with our code base. The question, "Will our application work anywhere but in localhost?" should encapsulate many of the issues. The answer is no. This is a problem, and this chapter is the solution. We are going to cover how to build a reproducible and scriptable build system that runs in one step. All the adjectives in the last sentence are important. We have to be able to run one command which will do exactly what we need to build our application. If we start introducing manual build steps, we risk introducing bugs into building and ...