Last active
March 27, 2024 17:15
-
-
Save ifkas/10020472e5e3ee1ed6a38f1b22d718c0 to your computer and use it in GitHub Desktop.
Aliases for Laravel Sail
This file contains 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
nano ~/.bash_profile | |
if [ -r ~/.bashrc ]; then | |
source ~/.bashrc | |
fi | |
nano ~/.bashrc | |
# Alias for sail up | |
alias sail='bash vendor/bin/sail' | |
# Then run sail by | |
sail up | |
# Or run in detached mode | |
sail up -d | |
# Alias for artisan serve | |
alias sailserve='./vendor/bin/sail artisan serve' | |
# Then run serve by | |
sailserve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment