When creating a new file for your programming project, how do you choose how to name it and where to put it? I recommend choosing a location that is expected by both humans and programs. Here are a couple of examples: README. There’s a decades-long convention of putting the basic overview documentation for a project in a file called README. This convention is now recognized by tools: for example, GitHub renders it in the repository front page. Docker Compose. If you use docker-compose to se...