Skip to content

Instantly share code, notes, and snippets.

@rdok
Last active June 28, 2018 04:09
Show Gist options
  • Save rdok/68e7d909514dc3ea9a740743f4f0093d to your computer and use it in GitHub Desktop.
Save rdok/68e7d909514dc3ea9a740743f4f0093d to your computer and use it in GitHub Desktop.
Composer: handle deployment for queues.
{
"scripts": {
"pre-install-cmd": [
"php artisan down",
"php artisan queue:restart",
],
"post-install-cmd": [
"php artisan up"
],
},
}
{
"scripts": {
"pre-install-cmd": [
"supervisorctl stop all",
"php artisan queue:restart",
],
"post-install-cmd": [
"supervisorctl start all"
],
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment