6 lines
181 B
Bash
6 lines
181 B
Bash
|
|
#!/usr/bin/with-contenv sh
|
||
|
|
set -eu;
|
||
|
|
|
||
|
|
# Start Queue
|
||
|
|
exec php /var/www/html/artisan queue:work --sleep=10 --timeout=0 --tries=3 --queue=default,migration >/proc/1/fd/1 2>/proc/1/fd/2
|