-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
56 lines (44 loc) · 921 Bytes
/
Copy pathTaskfile.yml
File metadata and controls
56 lines (44 loc) · 921 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '3'
env:
CONSOLE: docker compose exec -it shopware ./bin/console
COMPOSER: docker compose exec -it shopware composer
tasks:
init:
cmds:
- task: start
- $COMPOSER install
- $COMPOSER require --dev fakerphp/faker
- $CONSOLE plugin:refresh -s
- $CONSOLE plugin:install -c -a JChannelpilotExporter
console:
cmds:
- $CONSOLE {{.CLI_ARGS}}
composer:
cmds:
- $COMPOSER {{.CLI_ARGS}}
start:
cmds:
- docker compose up -d
stop:
cmds:
- docker compose down
restart:
cmds:
- task: stop
- task: start
remove:
cmds:
- docker compose down -v
reset:
cmds:
- task: remove
- task: init
generate-fake-data:
cmds:
- $CONSOLE j:channel_pilot:generate_fake_products
clean:
cmds:
- $CONSOLE cache:clear
export:
cmds:
- $CONSOLE j:channel_pilot:export