-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.yml
24 lines (21 loc) · 809 Bytes
/
local.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
- name: apply web
hosts: localhost
connection: local
become: true
gather_subset: '!hardware'
vars_files:
- [ "vars/setup.yml.dist" ] #always load dist in case of missing entries in vars/setup.yml
- [ "vars/setup.yml", "vars/setup.yml.dist" ] # fallback to .dist
roles:
- { role: common, tags: common }
- { role: web/composer-with-wrapper, tags: composer-with-wrapper }
- { role: web/nodejs, tags: nodejs }
- { role: web/wpcli, tags: wpcli }
- { role: web/yarn, tags: yarn }
- { role: web/nginx, tags: nginx }
- { role: web/mailhog, tags: mailhog }
- { role: web/redis, tags: redis }
- { role: web/mariadb, tags: mysql,mariadb }
- { role: web/php, tags: php }
- { role: web/phpmyadmin, tags: pma }
- { role: web/phpstorm, tags: phpstorm }