mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-19 18:01:37 +00:00
22 lines
268 B
Bash
Executable File
22 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd /home/vito/vito
|
|
|
|
php artisan down
|
|
|
|
git pull
|
|
|
|
composer install --no-dev
|
|
|
|
php artisan migrate --force
|
|
|
|
php artisan config:clear
|
|
php artisan cache:clear
|
|
php artisan view:clear
|
|
|
|
php artisan config:cache
|
|
|
|
sudo supervisorctl restart worker:*
|
|
|
|
php artisan up
|