1
0
Fork 0

Fix for new version of API

This commit is contained in:
Andrew Tomaka 2015-02-05 00:54:31 -05:00
parent 69881de296
commit 0876a76c61
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
## The Vagrantfile
```
Vagrant::Config.run do |config|
Vagrant.configure(2) do |config|
# Installs the operating system
config.vm.box = 'ubuntu/trusty64'
# Configures the virtual machine
config.vm.network :hostonly, '192.168.111.10'
config.vm.network 'private_network', ip: '192.168.111.10'
config.vm.synced_folder 'code/', '/home/vagrant/app'
# Provisions the system