Add 2.8 tracker branches
[mdk.git] / mdk / config-dist.json
1 // Moodle Development Kit configuration file
2 //
3 // A comment in this file MUST be preceded by white spaces or nothing.
4 //
5 // This configuration file will be looked for in those directories:
6 // - ~/.moodle-sdk/config.json
7 // - /etc/moodle-sdk/config.json
8 // - <MDK>/config.json
9 //
10 {
11 // Directories to work with.
12 // All of them must exist and must be writeable by the current user.
13 // www and storage CANNOT point to the same directory and must be writeable.
14 "dirs": {
15 // The web directory you are going to access Moodle from, typically your virtual host DocumentRoot.
16 // A symlink to the web directory of your Moodle instance will be created here.
17 "www": "~/www",
18 // The directory where the instances will be stored.
19 "storage": "~/moodles",
20 // A directory used by MDK to store different kind of things such as scripts and backups.
21 "moodle": "~/.moodle-sdk",
22 // Used for cached repositories and stuff which could be shared system-wide.
23 "mdk": "~/.moodle-sdk"
24 },
25
26 // List of remotes to work with
27 // The integration branch MUST end with integration.git
28 "remotes": {
29 "stable": "git://git.moodle.org/moodle.git",
30 "integration": "git://git.moodle.org/integration.git",
31 "mine": "git@github.com:YourGitHub/moodle.git"
32 },
33
34 // Database access
35 "db": {
36 // Name prefix for all databases created by mdk. Affects the database name only, not the tables.
37 "namePrefix": "",
38 "mariadb": {
39 "host": "localhost",
40 "port": "3306",
41 "user": "root",
42 "passwd": "root"
43 },
44 "mysqli": {
45 "host": "localhost",
46 "port": "3306",
47 "user": "root",
48 "passwd": "root"
49 },
50 "pgsql": {
51 "host": "localhost",
52 "port": "5432",
53 "user": "root",
54 "passwd": "root"
55 }
56 },
57
58 // Define the way your want things to be called
59 "wording": {
60
61 // How to name your instances
62 "prefixStable": "stable_",
63 "prefixIntegration": "integration_",
64 "prefixMaster": "master",
65 "suffixSeparator": "_",
66
67 // How to name your branches
68 // Read the doc about Python regular expressions if you need to modify them
69 // http://docs.python.org/library/re.html
70 "branchFormat": "MDL-%(issue)s-%(version)s",
71 "branchSuffixSeparator": "-",
72 "branchRegex": "^MDL-(?P<issue>[0-9]+)-(?P<version>[0-9a-z]+)(-(?P<suffix>[a-z0-9_-]+))?",
73
74 // How to name your Moodle installation
75 "integration": "Integration",
76 "master": "Master",
77 "stable": "Stable",
78 "mariadb": "MariaDB",
79 "mysqli": "MySQL",
80 "pgsql": "PostgreSQL"
81 },
82
83 // The information for integrating MDK with Jira
84 "tracker": {
85 "url": "https://tracker.moodle.org/",
86 "username": false,
87 "fieldnames" : {
88 "repositoryurl" : "Pull from Repository",
89 "22" : {
90 "branch" : "Pull 2.2 Branch",
91 "diffurl" : "Pull 2.2 Diff URL"
92 },
93 "23" : {
94 "branch" : "Pull 2.3 Branch",
95 "diffurl" : "Pull 2.3 Diff URL"
96 },
97 "24" : {
98 "branch" : "Pull 2.4 Branch",
99 "diffurl" : "Pull 2.4 Diff URL"
100 },
101 "25" : {
102 "branch" : "Pull 2.5 Branch",
103 "diffurl" : "Pull 2.5 Diff URL"
104 },
105 "26" : {
106 "branch" : "Pull 2.6 Branch",
107 "diffurl" : "Pull 2.6 Diff URL"
108 },
109 "27" : {
110 "branch" : "Pull 2.7 Branch",
111 "diffurl" : "Pull 2.7 Diff URL"
112 },
113 "28" : {
114 "branch" : "Pull 2.8 Branch",
115 "diffurl" : "Pull 2.8 Diff URL"
116 },
117 "master" : {
118 "branch" : "Pull Master Branch",
119 "diffurl" : "Pull Master Diff URL"
120 }
121 }
122 },
123 // The base for diff URLs, you can use the following wildcards:
124 // - %branch%: The branch name;
125 // - %stablebranch%: The stable branch (MOODLE_23_STABLE, MOODLE_24_STABLE, master, ...);
126 // - %headcommit%: The head commit.
127 // This is used to populate the fields on the tracker issue.
128 "diffUrlTemplate": "https://github.com/YourGitHub/moodle/compare/%headcommit%...%branch%",
129
130 // The public acccess URL of your repository. It is used to populate the fields on the tracker issue.
131 "repositoryUrl": "git://github.com/YourGitHub/moodle.git",
132
133 // Plugins related settings.
134 "plugins": {
135
136 // Set this setting to false to disable the caching of plugins locally.
137 "fileCache": true,
138
139 // Local repository for plugins missing on the database.
140 "localRepository": {
141 "auth_mdk": {
142 ">=20": {
143 "downloadurl": "https://github.com/FMCorz/moodle-auth_mdk/archive/master.zip"
144 }
145 }
146 }
147 },
148
149 // The scheme to set during an install (http or https)
150 "scheme": "http",
151 // The host name to set during an install
152 "host": "localhost",
153 // Path to your Moodle instances, http://host/path/ should point to dirs.www.
154 "path": "m",
155 // Moodle admin login
156 "login": "admin",
157 // Moodle admin password
158 "passwd": "test",
159 // What to call your remote, the one pointing to remotes.mine
160 "myRemote": "github",
161 // What to call the upstream remote, the one pointing to the official repositoriy (stable or integration)
162 "upstreamRemote": "origin",
163
164 // Config setting that should be set in config.php when an instance is being installed.
165 "forceCfg": {
166 // The following example will set CFG->divertallemailsto to "root@localhost.local".
167 // "divertallemailsto": "root@localhost.local"
168 },
169
170 // Behat related settings
171 "behat": {
172
173 // From 2.7 Behat requires a different wwwroot than the one set in config.php.
174 // MDK assumes that the only thing that will differ between the wwwroot and
175 // behat wwwroot is the host, nothing else. Use a ServerAlias or /etc/hosts entries.
176 "host": "127.0.0.1",
177 // The number of seconds the behat command will sleep after launching the PHP Server, or Selenium.
178 "launchSleep": 5
179 },
180
181 // The name of the data directory (in dirs.storage/instanceName/)
182 "dataDir": "moodledata",
183 // The name of the www directory (in dirs.storage/instanceName/)
184 "wwwDir": "moodle",
185 // The name of the extra directory, it will be used to store different things of an instance (in dirs.storage/instanceName/)
186 "extraDir": "extra",
187 // The name of the web accessible directory that MDK uses to give access to the extraDirs (created in dirs.www/).
188 "mdkDir": "mdk",
189
190 // The default engine to use when not specified
191 "defaultEngine": "mysqli",
192
193 // Path to Git
194 "git": "/usr/bin/git",
195 // Path to PHP
196 "php": "/usr/bin/php",
197 // Path to Java
198 "java": "/usr/bin/java",
199 // Path to recess
200 "recess": "/usr/local/bin/recess",
201 // Path to lessc
202 "lessc": "/usr/local/bin/lessc",
203 // Path to shifter
204 "shifter": "/usr/bin/shifter",
205 // Path to yuidoc
206 "yuidoc": "/usr/local/bin/yuidoc",
207 // Path to your favourite editor. Set to null to guess it from the System environment.
208 "editor": null,
209
210 // Debug level of MDK. 'debug', 'info', 'warning', 'error' or 'critical'.
211 "debug": "info",
212
213 // When enabled, MDK will try to be smart to identify the parent commit of the current branch. Instead of
214 // using the stable branch it will match the branch name with an issue number and compare it with the commit
215 // messages. The first commit message that does not match the pattern MDL-12345 will be used as the headcommit.
216 "smartHeadCommitSearch": true,
217
218 // Limit the search of the head commit to the last n commits.
219 "smartHeadCommitLimit": 50,
220
221 // Name of the symlink pointing to the data directory to create in the www directory
222 // during an instance creation. If false, the symlink won't be created.
223 "symlinkToData": false,
224
225 // By default MDK caches origin as a local mirror. It is much faster when it comes to upgrading
226 // a couple of instances at the same time. MDK will update the mirror as often as it needs to,
227 // but if you are not using MDK to upgrade your instances, you might want to disable this
228 // functionality to only rely on the real origin. Creating new instances will not be affected
229 // by this setting.
230 "useCacheAsUpstreamRemote": true,
231
232 // You should not edit this, this is the branch that is considered as master by developers.
233 "masterBranch": 29,
234
235 // Aliases for MDK commands.
236 // An alias starting with a ! will be executed through the command line. Those also
237 // can use placeholders for arguments: $1, $2, ...
238 // Examples:
239 // "upall": "update --all". `mdk upall` will execute `mdk update --all`
240 // "ls": "!ls -al". `mdk ls` will execute `ls -al`
241 "aliases": {
242 "check": "doctor",
243 "list": "info -l",
244 "theme": "!mdk info -v theme -e $1 $2"
245 }
246 }