aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2019-05-01 21:15:20 +0200
committerHarald Eilertsen <haraldei@anduin.net>2019-05-01 21:15:20 +0200
commit7a2e389e6dc214d159b4777f05c56a3ac444aa09 (patch)
tree043144c4125946f8f4ccbc570ade0c34f35a60fa
parent751b112b7ab1766aa08d3422ecd1924354b9cd59 (diff)
downloadhmnoweb-7a2e389e6dc214d159b4777f05c56a3ac444aa09.tar.gz
hmnoweb-7a2e389e6dc214d159b4777f05c56a3ac444aa09.tar.bz2
hmnoweb-7a2e389e6dc214d159b4777f05c56a3ac444aa09.zip
Vagrantfile: Don't sync config/database.yml.
-rw-r--r--Vagrantfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 1d45650..e54619d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -18,7 +18,7 @@ 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/ db/*.sqlite3 public/system/ vendor/bundle/]
+ config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: %w[.git/ config/database.yml db/*.sqlite3 public/system/ vendor/bundle/]
end
# -*- mode: ruby -*-