mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-22 12:10:18 +01:00
14 lines
405 B
Text
14 lines
405 B
Text
|
# -*- mode: ruby -*-
|
||
|
# vi: set ft=ruby :
|
||
|
|
||
|
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
|
||
|
VAGRANTFILE_API_VERSION = "2"
|
||
|
|
||
|
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||
|
# Every Vagrant virtual environment requires a box to build off of.
|
||
|
config.vm.box = "puphpet/ubuntu1404-x64"
|
||
|
config.vm.provider "vmware_fusion" do |v|
|
||
|
v.gui = true
|
||
|
end
|
||
|
end
|