-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy path.lando.yml
72 lines (61 loc) · 1.5 KB
/
.lando.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: uh
recipe: drupal8
config:
php: 7.2
via: nginx
webroot: web
xdebug: true
services:
solr:
type: solr
core: drupalcommerce_demo
portforward: true
config:
dir: solr-conf/7.x
node:
type: node
run:
- cd $LANDO_MOUNT
- npm install gulp gulp-sass gulp-sourcemaps gulp-rename
- npm install gulp-postcss postcss-easysprites autoprefixer gulp-cli
mailhog:
type: mailhog
hogfrom:
- appserver
portforward: true
proxy:
solr:
- solr.uh.lndo.site:8983
mailhog:
- mail.uh.lndo.site
tooling:
tooling:
phpcs:
service: appserver
description: 'Run phpcs: lando phpcs'
cmd:
- 'phpcs --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md'
phpcbf:
service: appserver
description: 'Run phpcbf: lando phpcbf'
cmd:
- 'phpcbf --standard=Drupal,DrupalPractice --extensions=php,module,inc,install,test,profile,theme,css,info,txt,md'
phpdebt:
service: appserver
description: 'Run phpdebt: lando phpdebt'
cmd:
- 'phpdebt'
phpunit:
service: appserver
description: "Run PHP Unit tests: lando phpunit \nCan run --filter testFunctionName ClassNameTest /path/to/class"
cmd:
- '/app/bin/phpunit --debug --configuration /app/phpunit.xml'
node:
service: node
gulp:
service: node
npm:
service: node
description: 'Run npm: lando npm'
cmd:
- 'npm'