aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2017-12-17 12:38:13 +0100
committerHarald Eilertsen <haraldei@anduin.net>2017-12-17 12:38:13 +0100
commit4db686f9e5d4963c4fdfadbdbae6416370f881d6 (patch)
tree75a239a451cb8d18ae41cdf2d1e041103f718c75
parent189407cc44275016a0b00798a3dac704f870f8c0 (diff)
downloadhmnoweb-4db686f9e5d4963c4fdfadbdbae6416370f881d6.tar.gz
hmnoweb-4db686f9e5d4963c4fdfadbdbae6416370f881d6.tar.bz2
hmnoweb-4db686f9e5d4963c4fdfadbdbae6416370f881d6.zip
Don't copy database files from host systemt to vagrant box.
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index d24ce9d..c5e6a76 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -7,5 +7,5 @@ Vagrant.configure("2") do |config|
config.vm.guest = :freebsd
config.vm.network :forwarded_port, host: 3000, guest: 3000
config.vm.provision :shell, :path => "vagrant/bootstrap.sh"
- config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ vendor/bundle/]
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ db/*.sqlite3 vendor/bundle/]
end