1234567891011121314151617181920212223242526 |
- #!/bin/bash
- php artisan cache:clear
- php artisan route:clear
- php artisan view:clear
- rm -rf .scribe/endpoints.cache
- php artisan scribe:generate
- chown -R root:root public/docs
- chown -R root:root storage
- chown -R root:root bootstrap/cache
- chmod -R 775 storage
- chmod -R 775 bootstrap/cache
- chmod -R 775 public/docs
- chmod -R 777 ./
- echo "All commands completed and permissions fixed!"
|