PHP Classes

File: tests/Acceptance/Vagrant/ubuntu1404/Vagrantfile

Recommend this page to a friend!
  Classes of Joaquin   Laravel Valet Linux   tests/Acceptance/Vagrant/ubuntu1404/Vagrantfile   Download  
File: tests/Acceptance/Vagrant/ubuntu1404/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: 721 bytes
 

Contents

Class file image Download
Vagrant.configure("2") do |config| config.vm.box = "ubuntu/trusty64" # Increase RAM to 2GB because Composer was going out of memory config.vm.provider "virtualbox" do |vb| vb.customize ["modifyvm", :id, "--memory", "2048"] end ["vmware_fusion", "vmware_workstation"].each do |vmware| config.vm.provider vmware do |v| v.vmx["memsize"] = 2048 end end config.vm.provider "parallels" do |v| v.memory = 2048 end config.vm.synced_folder "../../../../", "/home/vagrant/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