1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-03-08 10:13:03 +00:00
bramw_baserow/deploy/vagrant/Vagrantfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
445 B
Text
Raw Normal View History

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/focal64"
config.vm.provision :shell, path: "bootstrap.sh"
config.vm.network "private_network", ip: "192.168.68.10"
config.landrush.enabled = true
config.vm.hostname = "baserow.vagrant.test"
config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 2
end
config.vm.synced_folder "../../", "/local_baserow_repo"
end