Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 457 Bytes

File metadata and controls

24 lines (17 loc) · 457 Bytes

Updating Deploy

To update you may run composer update.

composer update

Also, to ensure that the queue workers have the recent file changes you may run php artisan queue:restart.

php artisan queue:restart

Updating assets and migrations

php artisan vendor:publish --tag=deploy-assets --force

Finally you may run the migrations to ensure all the deploy tables are up-to-date.

php artisan migrate