I have a lot of projects. And for each project, I have two files in them: setup and serve.
Each developer follows these simple three steps to start coding:
git clone ..../setup./serve
The problem is that ./setup is not easy to type. And since this is a microservice architecture with a lot of repositories, ./setup and ./serve would be used frequently.
How can I make ubuntu understand that any time I write setup anywhere I mean there is a file called setup and you should run it.
This way developers would only configure their machines once, and then start coding using clone,setup,serve paradigm.