-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaljibe.yaml.example
59 lines (55 loc) · 1.62 KB
/
aljibe.yaml.example
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
#####
#ddev-generated
##
## Aljibe config file
##
## Here you can customize Aljibe related configs, feel free to add any other
## configuration you need.
## This config can be obtained with ddev aljibe-config command.
##
## Examples:
## - ddev aljibe-config theme_path
## Will obtain all theme_paths to be processed
## - ddev aljibe-config default_site
## Will get the default site to be processed
# This is the default site to be installed with ddev setup command
default_site: self
##
# This is the default theme to be processed with ddev frontend command.
# Multiple themes can be defined in the theme_paths variable,
# so they are available to be processed with the ddev frontend command.
theme_paths:
custom_theme: /var/www/html/web/themes/custom/custom_theme
##
# The installable_sites_aliases variable is an optional list of Drush aliases for installable
# sites. It allows overriding the default behavior of Aljibe, which detects all
# .local aliases when running ddev setup -a, installing only the
# sites defined here.
##
# installable_sites_aliases:
# - site1.local
# - site2.custom
# - site3.ddev
##
# Some commands can be executed before and after the setup process.
# They must be defined as a list of commands.
# Example:
#
# hooks:
# pre_setup:
# - echo "Aljibe pre setup hook"
# - ddev snapshot
# post_setup:
# - echo "Aljibe post setup hook"
# - ddev drush uli --uid=2
##
hooks:
pre_setup: []
post_setup: []
pre_site_install: []
post_site_install:
- drush @${SITE_ALIAS} uli
pre_site_install_config: []
post_site_install_config: []
pre_site_install_db: []
post_site_install_db: []