Guest User

Untitled

a guest
Mar 19th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. #move to project directory
  4. cd /jet/www/app
  5.  
  6. # Install/Update application
  7. composer install
  8. npm install
  9. npm run production
  10.  
  11. #migrations
  12. php artisan migrate
  13.  
  14. # Clear any previous cached views and optimize the application
  15. php artisan cache:clear
  16. php artisan view:clear
  17. php artisan config:cache
  18. php artisan optimize
Add Comment
Please, Sign In to add comment