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 January 13, 2024 18:32
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}