#!/bin/sh
echo "Removing generated files. Might take awhile. Please wait patiently..."
sudo rm -rf /var/www/html/var/view_preprocessed/* /var/www/html/var/cache/* /var/www/html/var/page_cache/* /var/www/html/var/generation/* /var/www/html/pub/static/*


/usr/bin/php /var/www/html/bin/magento cache:flush
/usr/bin/php /var/www/html/bin/magento setup:upgrade
/usr/bin/php /var/www/html/bin/magento setup:di:compile
/usr/bin/php /var/www/html/bin/magento setup:static-content:deploy -f
/usr/bin/php /var/www/html/bin/magento indexer:reindex
echo "Changing file permissions. Will take awhile. Please wait patiently..."
sudo chmod -R 777 /var/www/html/pub /var/www/html/var /var/www/html/app /var/www/html/scripts
