File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: tests
22on :
33 pull_request :
44 push :
5- branches : [ master, main ]
5+ branches : [ main ]
66
77 schedule :
88 - cron : ' 01 07 * * *'
2929
3030 strategy :
3131 matrix :
32- ddev_version : [stable, edge, HEAD]
32+ ddev_version : [stable, HEAD]
3333# ddev_version: [PR]
3434 fail-fast : false
3535
Original file line number Diff line number Diff line change 1- name : addon-template
1+ name : ddev-laravel-queue
22
33# pre_install_actions - list of actions to run before installing the addon.
44# Examples would be removing an extraneous docker volume,
@@ -9,15 +9,13 @@ pre_install_actions:
99
1010# list of files and directories listed that are copied into project .ddev directory
1111project_files :
12- - docker-compose.addon-template.yaml
13- # - extra_files/
14- # - somefile.sh
12+ - web-build/Dockerfile.ddev-laravel-worker
13+ - web-build/laravel-worker.conf
14+
1515
1616# List of files and directories that are copied into the global .ddev directory
1717global_files :
18- # - commands
19- # - homeadditions
18+
2019
2120post_install_actions :
22- # - chmod +x ~/.ddev/commands/web/somecommand
23- # - perl -pi -e 's/oldstring/newstring/g' docker-compose.addon-template.yaml
21+
Original file line number Diff line number Diff line change 1+ #ddev-generated
12[program:laravel-worker]
23process_name=%(program_name)s_%(process_num)s
34command=/usr/bin/php /var/www/html/artisan queue:work --sleep=3 --tries=3
You can’t perform that action at this time.
0 commit comments