-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile.yml
43 lines (39 loc) · 940 Bytes
/
Taskfile.yml
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
version: 3
dotenv:
- ".env.local"
- ".env"
includes:
docker:
aliases: [ dc ]
internal: true
taskfile: "../../tasks/Docker.yml"
symfony:
aliases: [ sf ]
taskfile: "../../tasks/Symfony.yml"
composer:
aliases: [ cp ]
taskfile: "../../tasks/Composer.yml"
qa:
taskfile: "../../tasks/Qa.yml"
test:
taskfile: "../../tasks/Test.yml"
npm:
taskfile: "../../tasks/Npm.yml"
tasks:
install:
label: "🐳 Installing project..."
cmds:
- task: docker:start
- task: composer:install
- task: symfony:translation-pull
- task: symfony:fixtures-reset
- task: symfony:lint-all
start:
label: "🐳 Starting project..."
desc: "Start the Docker containers for this project"
summary: |
This task will start the Docker containers for this project.
cmds:
- task: docker:start
- task: composer:install
- task: symfony:lint-all