|
|
|
|
|
by mikerathbun
3052 days ago
|
|
I have used Vagrant for a few years and never had an issue. All of my source code is shared/synced on the system drive. I use Go, Python, and lots of Javascript frameworks which are all installed and compiled in Vagrant. It's really nice not having all of the frameworks and compilers installed on my work environment. If I need to run a web server or DB I will either apt-get install it in the current Vagrant VM or create a second VM and configure ports in the Vagrantfile to make sure they can talk. I recently started to use Docker to run those services so my Vagrant environment is quickly just becoming the area where I run the tools associated with code compiling. |
|