Started to work on Vagrant configuration.

This commit is contained in:
Daniel Buckmaster 2015-02-01 21:22:05 +11:00
parent 9a0247f780
commit db06ffec7d
2 changed files with 63 additions and 0 deletions

25
Tools/Vagrant/Vagrantfile vendored Normal file
View file

@ -0,0 +1,25 @@
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = '2'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = 'ubuntu/trusty32'
config.vm.provider 'virtualbox' do |vb|
vb.gui = true
vb.memory = 1024
end
config.vm.synced_folder '../../', '/torque'
config.vm.provision :shell, path: 'provision.sh'
# config.vm.network 'forwarded_port', guest: 80, host: 8080
# More info at http://fgrehm.viewdocs.io/vagrant-cachier/usage
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
end
end