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
2
2
on :
3
3
pull_request :
4
4
push :
5
- branches : [ master, main ]
5
+ branches : [ main ]
6
6
7
7
schedule :
8
8
- cron : ' 01 07 * * *'
29
29
30
30
strategy :
31
31
matrix :
32
- ddev_version : [stable, edge, HEAD]
32
+ ddev_version : [stable, HEAD]
33
33
# ddev_version: [PR]
34
34
fail-fast : false
35
35
Original file line number Diff line number Diff line change 1
- name : addon-template
1
+ name : ddev-laravel-queue
2
2
3
3
# pre_install_actions - list of actions to run before installing the addon.
4
4
# Examples would be removing an extraneous docker volume,
@@ -9,15 +9,13 @@ pre_install_actions:
9
9
10
10
# list of files and directories listed that are copied into project .ddev directory
11
11
project_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
+
15
15
16
16
# List of files and directories that are copied into the global .ddev directory
17
17
global_files :
18
- # - commands
19
- # - homeadditions
18
+
20
19
21
20
post_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
1
2
[program:laravel-worker]
2
3
process_name=%(program_name)s_%(process_num)s
3
4
command=/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