To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / deploy / vagrant / Vagrantfile @ 1611:89d3095ddc70

History | View | Annotate | Download (289 Bytes)

1
# -*- mode: ruby -*-
2
# vi: set ft=ruby :
3

    
4
Vagrant.configure("2") do |config|
5
  config.vm.box = "ubuntu/xenial64"
6
  config.vm.network "forwarded_port", guest: 80, host: 8080
7
  config.vm.synced_folder "../..", "/code-to-deploy"
8
  config.vm.provision :shell, path: "vagrant-provision.sh"
9
end