-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipe.yml
99 lines (95 loc) · 1.85 KB
/
recipe.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name: 'Forum One - Drupal Base'
description: 'Provides baseline Drupal installation typical of all Forum One build projects'
type: 'Site'
# Prompt for basic site info.
input:
site_name:
data_type: string
description: The site name to be used.
constraints:
NotBlank: []
prompt:
# ask, askHidden, choice, and confirm.
method: ask
arguments:
question: 'What is the site name?'
default:
source: 'value'
value: 'Default Site'
site_email:
data_type: email
description: The site's email address.
constraints:
NotBlank: []
prompt:
method: ask
arguments:
question: 'Email address to use for Drupal system mailings?'
default:
source: 'value'
value: '[email protected]'
install:
# Core
- block
- block_content
- ckeditor5
- config
- contextual
- claro
- dblog
- field_ui
- filter
- link
- media
- media_library
- menu_ui
- node
- taxonomy
- toolbar
- text
- user
- views
- views_ui
# Contrib
- admin_toolbar
- admin_toolbar_tools
- anchor_link
- config_direct_save
- config_ignore
- config_split
- environment_indicator
- field_group
- focal_point
- linkit
- metatag
- pathauto
- paragraphs
- token
config:
strict: false
import:
dblog: '*'
linkit: '*'
node: '*'
media: '*'
media_library: '*'
actions:
block.block.claro_admin:
simpleConfigUpdate:
status: false
block.block.claro_branding:
simpleConfigUpdate:
status: false
block.block.claro_tools:
simpleConfigUpdate:
status: false
node.settings:
simpleConfigUpdate:
use_admin_theme: true
system.theme:
simpleConfigUpdate:
admin: 'claro'
system.site:
simpleConfigUpdate:
name: ${site_name}
mail: ${site_email}