Initial commit
This commit is contained in:
commit
33bc89c1b3
2 changed files with 17 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
.vagrant
|
||||
code/
|
15
Vagrantfile
vendored
Normal file
15
Vagrantfile
vendored
Normal 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
|
Loading…
Reference in a new issue