laravel sail alias

Solutions on MaxInterview for laravel sail alias by the best coders in the world

showing results for - "laravel sail alias"
Marcus
28 Aug 2016
1/* So you can just run sail up 
2instead of: vendor/bin/sail up    
3(If you add -d to your command it runs in the background of the same terminal)
4Run this inside your project. Also this method does not carry over sessions */
5alias sail="bash vendor/bin/sail"
6sail up -d
7/* here is the official documentation for this 
8https://laravel.com/docs/8.x/sail#configuring-a-bash-alias */