forked from hechoendrupal/drupal-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite-install.yml
More file actions
33 lines (33 loc) · 819 Bytes
/
Copy pathsite-install.yml
File metadata and controls
33 lines (33 loc) · 819 Bytes
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
commands:
# Install Drupal
- command: site:install
options:
langcode: en
db-type: mysql
db-host: 127.0.0.1
db-name: drupal # default database
db-user: root # local config
db-pass: root # local config
db-port: 3306
site-name: 'Drupal 8 site'
site-mail: admin@example.org # default email
account-name: admin # default account
account-mail: admin@example.org # default email
account-pass: admin # default pass
arguments:
profile: standard
# Install modules
- command: module:install
arguments:
module:
- admin_toolbar
- admin_toolbar_tools
- disqus
- big_pipe
- token
- ctools
- pathauto
# Rebuild caches
- command: cache:rebuild
arguments:
cache: all