Skip to content

Instantly share code, notes, and snippets.

View zacksmash's full-sized avatar
💯

Zack Warren zacksmash

💯
View GitHub Profile
@zacksmash
zacksmash / deploy.sh
Last active October 17, 2024 10:47
Laravel Forge Zero Downtime Script
# Stop On Error
set -e
# Set Paths
SITE=${FORGE_SITE_PATH#"/home/forge/"}
DEPL="/home/forge/deployments/${SITE}"
# Create Deployment Directory
mkdir -p ${DEPL}