Scott Baker | 5042166 | 2016-06-27 22:09:48 -0700 | [diff] [blame] | 1 | Vagrant.configure("2") do |config| |
2 | config.vm.box = "ubuntu/trusty64" | ||||
3 | |||||
4 | config.vm.network "private_network", ip: "192.168.46.100" | ||||
5 | config.vm.synced_folder "../../../", "/opt/xos" | ||||
6 | config.vm.provision "shell", | ||||
7 | inline: "cd /opt/xos/xos/configurations/frontend && make && echo Vagrant running" | ||||
8 | end |