Add Vagrantfile to make it easier to build toaruos on other platforms

This commit is contained in:
gerow 2015-06-17 21:04:13 -07:00
parent 4501419126
commit e710280a69

10
Vagrantfile vendored Normal file
View File

@ -0,0 +1,10 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
end
end