Skip to content

Instantly share code, notes, and snippets.

View arielmagbanuazeald's full-sized avatar
🎯
Focusing

Ariel Magbanua arielmagbanuazeald

🎯
Focusing
View GitHub Profile
@arielmagbanuazeald
arielmagbanuazeald / deploy.sh
Created January 9, 2019 06:53 — forked from BenSampo/deploy.sh
Laravel deploy script
# Change to the project directory
cd /home/forge/domain.com
# Turn on maintenance mode
php artisan down
# Pull the latest changes from the git repository
git pull origin master
# Install/update composer dependecies
@arielmagbanuazeald
arielmagbanuazeald / Vagrantfile.diff
Created January 8, 2019 22:20 — forked from dgoguerra/Vagrantfile.diff
Homestead v2.0.0 configuration
diff --git a/Vagrantfile b/Vagrantfile
index 12b8f52..7b77ab2 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -17,6 +17,11 @@ require File.expand_path(File.dirname(__FILE__) + '/scripts/homestead.rb')
Vagrant.require_version '>= 1.9.0'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
+
+ config.vm.provider 'virtualbox' do |vb|