Skip to content

Instantly share code, notes, and snippets.

@spont4e
spont4e / laravel-simple-deploy-script
Last active June 19, 2020 17:45
Simple Laravel Deploy
#!/bin/bash -e
git="/usr/bin/git"
php="/usr/bin/php7.2"
composer="/usr/bin/composer"
npm="/usr/bin/npm"
wwwdir="/var/www/your-site/"
artisan=$wwwdir"artisan"
update="/var/tmp/your-site-update.txt"
log="/var/log/deploy/your-site.log"