Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #! /bin/bash
  2.  
  3. echo "Copying .env.example file to .env"
  4. cp .env.example .env
  5.  
  6. echo "Installing composer dependencies"
  7. composer install
  8.  
  9. echo "Installing NPM dependencies"
  10. npm install
  11.  
  12. echo "Generating environment key"
  13. php artisan key:generate
  14.  
  15. echo "Linking storage"
  16. php artisan storage:link
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement