node.js - How to clone all code and install all dependent software for a web application on new developers computer -
i current have web application divided 3 aspects.
- front end - html, css , javascript web browser code.
- server - express.js web server.
- database - mysql database.
i store source code in git repository , can clone developers computer. works fine.
my problem encountered when clone repository new developers computer not have correct supporting applications installed. e.g. node, mysql, 7-zip, etc. have go through laborious process of manually installing these applications before web application able run locally on machine.
so question is....
is there someway can automate installation of supporting software when or after cloning repository git server don't have go through manual process each time?
configuration management systems intended provisioning servers, many developers use them development, particularly in conjunction vagrant. if needed use them install software on host.
i use ansible this, there many other options puppet , chef.
Comments
Post a Comment