PHP Classes

File: tests/Acceptance/Vagrant/ubuntu1704/Vagrantfile

Recommend this page to a friend!
  Classes of Joaquin   Laravel Valet Linux   tests/Acceptance/Vagrant/ubuntu1704/Vagrantfile   Download  
File: tests/Acceptance/Vagrant/ubuntu1704/Vagrantfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Valet Linux
Run Laravel environment under a Linux machine
Author: By
Last change:
Date: 5 years ago
Size: 332 bytes
 

Contents

Class file image Download
Vagrant.configure("2") do |config| config.vm.box = "ubuntu/zesty64" config.vm.synced_folder "../../../../", "/home/ubuntu/cpriego-valet-linux" config.vm.provision "shell" do |s| s.path = "provision.sh" s.privileged = false s.env = { VALET_ENVIRONMENT: ENV['VALET_ENVIRONMENT'] || "testing" } end end