File: Vagrantfile

package info (click to toggle)
python-tornado 6.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,176 kB
  • sloc: python: 28,920; javascript: 156; sh: 100; ansic: 72; xml: 49; makefile: 49; sql: 23
file content (9 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
Vagrant::Config.run do |config|
    config.vm.box = "precise64"
    config.vm.box_url = "http://files.vagrantup.com/precise64.box"

    config.vm.network :hostonly, "172.19.1.5"
    config.vm.share_folder("tornado", "/tornado", "../../..", :nfs=> true)

    config.vm.provision :shell, :path => "setup.sh"
end