-
Notifications
You must be signed in to change notification settings - Fork 11
/
runner.yml
117 lines (102 loc) · 3.76 KB
/
runner.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# =============================================================================
# Default Task Runner configuration
# =============================================================================
# -----------------------------------------------------------------------------
# Global Task Runner settings
# -----------------------------------------------------------------------------
#
# The "runner.working_dir" will contain the full path to current working directory.
# @see OpenEuropa\TaskRunner\TaskRunner::createConfiguration()
runner:
bin_dir: "./vendor/bin"
# working_dir: ~
# -----------------------------------------------------------------------------
# Drupal-related settings.
# -----------------------------------------------------------------------------
#
# Value of "drupal.root_absolute" is derived at runtime.
# @see OpenEuropa\TaskRunner\Commands\DrupalCommands::setRuntimeConfig()
drupal:
core: 9
root: "build"
root_absolute: ~
base_url: "http://127.0.0.1:8888"
# Basic Drupal site information.
site:
name: "Site name"
mail: "[email protected]"
profile: "standard"
update: "false"
locale: "en"
sites_subdir: "default"
# The "drupal.site.config_dir" option is deprecated. For Drupal 8.6 and
# higher, use "drupal.site.existing_config" instead.
config_dir: ~
existing_config: false
settings_override_file: "settings.override.php"
# Setting this to "false" will run "site-install" without the "--db-url" parameter.
# This is useful if the database settings are already set in your settings.php file.
generate_db_url: true
# Administrator account information.
account:
name: "admin"
password: "admin"
mail: "[email protected]"
# Database settings.
database:
# @deprecated
# The "type" option will be removed in version 1.0.0. Use "scheme".
type: ""
scheme: "mysql"
host: "127.0.0.1"
port: "3306"
name: ""
user: ""
password: ""
# Config example for sqlite usage.
# Note that empty strings should be used to override default settings.
# database:
# scheme: "sqlite"
# host: "/path/to/my/database"
# port: ""
# name: "database.sqlite"
# user: ""
# password: ""
# Local Drush settings file will be generated by following default values.
drush:
options:
uri: "${drupal.base_url}"
# Following lines will be converted in PHP and appended to default.settings.php.
settings: []
# List of shell commands to be before and after the site installation.
# You can use same syntax as the "commands:", check the documentation for more.
# Configuration token replacement is supported too.
pre_install: []
post_install: []
# -----------------------------------------------------------------------------
# GitHub configuration values.
# -----------------------------------------------------------------------------
github:
# GitHub personal access token token.
# @link https://github.com/settings/tokens
token: ~
# -----------------------------------------------------------------------------
# Release commands configuration values.
# -----------------------------------------------------------------------------
release:
# List of tasks to be ran before creating the release archive.
tasks: []
# Time and date formats used when generating values below.
time_format: "H:i:s"
date_format: "Y-m-d"
# The following values are created at runtime and can be used when appending
# release notes to text files.
# They can be accessed via ${release.NAME}
# version: ~
# date: ~
# time: ~
# timestamp: ~
# -----------------------------------------------------------------------------
# List of dynamically-defined commands.
# -----------------------------------------------------------------------------
commands: []