This file contains hidden or 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
# The idea of this deployment script is to create a deploy copy of your website and handle | |
# Git and Composer updates in there. Aferwards, it just renames that deploy copy to become the | |
# live website. We then run the database migrations and take the application out of maintenance mode. | |
# Obviously, you will have to replace all instances of {{ websiteName }} with the name of your website and | |
# {{ branchName }} with the name of the branch you would like to pull changes from. This is usually the master branch. | |
# Start by checking for for old deployment folder and remove it if we have one. | |
if [ -d "/home/forge/{{ websiteName }}-deploy" ]; then | |
rm -Rf /home/forge/{{ websiteName }}-deploy |