This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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| |
NewerOlder