If you're building WordPress or Laravel apps, you can speed up tasks with command-line tools like WP-CLI and Artisan.
Using WP-CLI:
- Connect via SSH.
- Navigate to your WordPress directory:
cd ~/public_html
- Run commands like:
wp plugin update --all
wp core update
Using Artisan (Laravel):
- Navigate to Laravel app root:
cd ~/public_html/laravel
- Run:
php artisan migrate
php artisan config:cache
WP-CLI and Artisan are pre-supported in most Aviumshost environments with SSH access.