12345678910111213141516171819202122 |
- #!/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 777 ./
- echo "All commands completed and permissions fixed!"
|