-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.drop.yml
More file actions
67 lines (61 loc) · 2.02 KB
/
example.drop.yml
File metadata and controls
67 lines (61 loc) · 2.02 KB
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
# You could use this file as a template for *.drop.yml config files
#
# For paths, you could use '~' or $HOME
# Also the following variables are available to be used
# - $root: points to the directory containing this config file.
#
# If specified, will be loaded before this config
base: base.yml
git:
alias: "git"
path: "/path/tp/new/git"
php:
alias: "php"
drush:
alias: "drush"
drupal:
url: http://localhost/
docroot: _build
# As in --db-url in `drush site-install`
db_url: mysql://drupaluser@127.0.0.1:3306/database_name
profile:
name: profile_name
# if specified will be installed first and $config_profile_name will be installed on top of it. defaults to empty
base: standard
install:
db:
dump: /path/to/dump.sql
# Attempt to create the DATABASE if not exists
create: false
theme: bootsrtap
# will revert all features on site update
features_revert_all: false
# will rebuild node permission on site update
rebuild_permissions: true
settingsphp:
# If true, the database credentials would be written to a php file which is specififed by the config below, by default set to true
generate: true
# Optional, settings.php by default. If you do not want settings.php to be generated include a separate file there and put the filename here
filename: settings.php
# If specified will be executed in $config_profile_path
post_script: $root/post-install.sh
# Modules will be enabled after a successfull install
enable_modules: "speace separated list of modules"
# A list of modules to disable after a successfull install
disable_modules: "speace separated list of modules"
build:
# The content of this directory will be synced with sites/ folder in docroot
sitesdir: sites
# path to makefile to be used by drush.
makefile: stub.make
profile:
type: ssymlink
# path to the directory containing {profile_name}.info
path: /path/to/profile
docroot:
type: git
url: https://github.com/drupal/drupal.git
branch: 7.x
deploy:
docroot: makefile
profile: copy