2015-02-04 13:15:00 -05:00
|
|
|
## The Vagrantfile
|
|
|
|
|
2015-02-04 16:58:48 -05:00
|
|
|
```
|
|
|
|
Vagrant::Config.run 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.synced_folder 'code/', '/home/vagrant/app'
|
|
|
|
|
|
|
|
# Provisions the system
|
|
|
|
config.vm.provision 'shell', path: 'provision/bootstrap.sh'
|
|
|
|
end
|
|
|
|
```
|
|
|
|
|
2015-02-04 13:15:00 -05:00
|
|
|
|
|
|
|
note:
|
|
|
|
Put your speaker notes here.
|
|
|
|
You can see them pressing 's'.
|