aboutsummaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 5da39ab..21fd8f7 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -1,9 +1,11 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
+# :mode=ruby:
Vagrant.configure("2") do |config|
config.vm.box = "bento/freebsd-10.3"
config.vm.guest = :freebsd
config.vm.network :forwarded_port, host: 4567, guest: 80
config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ vendor/bundle/]
end