aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Vagrantfile12
1 files changed, 10 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 5ca9a11..c717f4a 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -14,11 +14,19 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
Vagrant.configure("2") do |config|
- config.vm.box = "bento/freebsd-12.0"
+ config.vm.box = "bento/freebsd-12.1"
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/ config/database.yml 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 -*-