generated from ansible-collections/collection_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdrupal.yml
40 lines (33 loc) · 1 KB
/
drupal.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
---
apps:
vars:
# Needs to be here for service_vars to look it up.
devshop_app_service_requirements:
http:
required: yes
db:
required: yes
solr:
redis:
varnish:
children:
drupal:
vars:
devshop_app_type: drupal
drupal_install_profile: standard
drupal_composer_bin_dir: vendor/bin
drupal_site_install_extra_args: []
devshop_app_command_build: |
COMPOSER_MEMORY_LIMIT=-1 composer install
devshop_app_command_install: >
drush site-install {{ drupal_install_profile | default('standard') }} -y
{{ drupal_site_install_extra_args | join(" ") }}
# The new "drush deploy" command includes all of these steps.
devshop_app_command_deploy: |
drush updatedb --no-cache-clear -y
drush cache:rebuild
drush config:import --preview -y
drush cache:rebuild
devshop_app_command_test: |
drush status
drush uli