-
-
Save mmuhd/83a220e2fc7240e1d7e749eb22e9c691 to your computer and use it in GitHub Desktop.
Revisions
-
Connor Leech created this gist
Jul 11, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ #!/bin/bash laravel new $1 cd $1 composer install yarn install touch README.md cp .env.example .env git init git add -A git commit -m 'Initial commit' php artisan key:generate php artisan config:clear php artisan config:cache