## The Vagrantfile ``` 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 ``` note: Put your speaker notes here. You can see them pressing 's'.