1
0
Fork 0

Initial commit

This commit is contained in:
Andrew Tomaka 2015-02-05 00:15:40 -05:00
commit 33bc89c1b3
2 changed files with 17 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.vagrant
code/

15
Vagrantfile vendored Normal file
View File

@ -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