Been using computers before it was cool
(okay not really)
No not that kind of vagrant
Vagrant is a simple tool that makes it easy to setup Virtual Machines
Its a pretty powerful tools.
Only covering the basics
"Sam" by Heather L. Gilbraith
"Alex" by Heather L. Gilbraith
# Vagrantfile
# Real file is super commented
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
# stuff
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y libpng-dev
SHELL
end
YVR Developers Slack - http://yvrdev.herokuapp.com/