...
A: Make is actually a standard GNU tool for designing build systems! It parses our Makefile so it knows what to do when you run commands such as make build_all
or make lint
. Vagrant just allows us to provide a pre-configured virtual machine with all the dependencies our build system needs, Make included.
Q: The VM takes forever to load then gives a timeout error.
A: Try going in to your computer’s BIOS, ensure the virtualization is enabled, then run vagrant destroy and vagrant up again (Credit to Micah Black).