Guest User

Untitled

a guest
Mar 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. echo "\n===============\n Updating at $(date) \n===============\n " >> ./storage/logs/update.log
  2.  
  3. echo "Installing composer dependecies..."
  4. php ./composer.phar install >> ./storage/logs/update.log
  5. echo "Running migrations..."
  6. php artisan migrate >> ./storage/logs/update.log
  7. echo "Installing nodejs dependecies..."
  8. npm install >> ./storage/logs/update.log
  9. echo "Building front end statics..."
  10. php artisan front:build-platform-config
  11. npm run prod >> ./storage/logs/update.log
  12.  
  13. echo "Done ✔️"
Add Comment
Please, Sign In to add comment