Skip to content

Instantly share code, notes, and snippets.

View dees040's full-sized avatar

Dees dees040

  • OWOW
  • The Netherlands
View GitHub Profile
@dees040
dees040 / deploy_site
Last active August 22, 2023 19:47
Deploy a Vue.JS app on Laravel Forge with zero downtime
#!/bin/bash
set -e
SITE=$1
HOME="/home/forge"
DESTINATION="$HOME/$SITE"
TARGET="$HOME/deployments/$SITE/current"
function display_usage() {
@dees040
dees040 / .bash_profile
Last active January 28, 2020 08:13
Laravel aliases
alias art="php artisan"
alias am="php artisan migrate"
alias amf="php artisan migrate:fresh"
alias amfs="php artisan migrate:fresh --seed"
alias ampt="php artisan migrate --pretend"
alias amfp="php artisan migrate --force --pretend"
alias amrb="php artisan migrate:rollback"
alias amrf="php artisan migrate:refresh"