I spent this semester building a project (though to be honest, it’s more of a buggy prototype) with PHP and MySQL. Since is for a class, we have to submit a paper describing the “dependencies” of the project. One of the questions I have to answer is “How does the user build (e.g., compile, link) your product? Describe how to use any build scripts you provide.”
It’s been a couple days since I’ve agonized over this question…
My research tells me that PHP is an interpreted language and does not need to be compiled, so I do not provide any separate build files. So instead for this question, I’ve described how to run my project on any computer provided XAMPP has been downloaded.
So my question is: is that what is meant by “build”? Is “build” just the same as “run”? Is anyone more familiar with the term pretty sure that I’ve missed the point?
Thanks.