Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does it mean to build a project?

When it comes to programming what does it really mean to build a project?

From my experience it usually means to compile a program. But what if it is a project that doesn't need compilation like a Python program or Django web application?

like image 787
Pithikos Avatar asked Nov 11 '22 03:11

Pithikos


1 Answers

Typically, building a project is not really about "building a project" at all. It is about "building items" that are considered to be the deliverables of the project.

In some circles the deliverables are also named "artifacts" or "build artifacts"; however, "to build a project" is really abbreviated speech for "to build the deliverables of a project from the sources".

like image 112
Edwin Buck Avatar answered Nov 24 '22 20:11

Edwin Buck