1
0
Fork 0
mirror of synced 2024-05-29 13:31:12 -04:00
dotbot/test/Vagrantfile
2015-05-05 20:11:46 -04:00

11 lines
287 B
Ruby

Vagrant.configure(2) do |config|
config.vm.box = 'ubuntu/trusty64'
# sync by copying for isolation
config.vm.synced_folder "..", "/dotbot", type: "rsync",
rsync__exclude: ".git/"
# disable default synced folder
config.vm.synced_folder ".", "/vagrant", disabled: true
end