commit 33bc89c1b3aae6206c50be5efce99fe4d9c9740a Author: Andrew Tomaka Date: Thu Feb 5 00:15:40 2015 -0500 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c086b9a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.vagrant +code/ diff --git a/Vagrantfile b/Vagrantfile new file mode 100644 index 0000000..c712a25 --- /dev/null +++ b/Vagrantfile @@ -0,0 +1,15 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +VAGRANTFILE_API_VERSION = "2" + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + config.vm.box = "ubuntu/trusty64" + + config.vm.network 'private_network', ip: '192.168.111.90' + config.vm.synced_folder 'code/', '/home/vagrant/app' + + config.vm.provider "virtualbox" do |v| + v.memory = 1024 + end +end