forked from MatmaRex/patchdemo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.default.php
More file actions
25 lines (25 loc) · 798 Bytes
/
config.default.php
File metadata and controls
25 lines (25 loc) · 798 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
<?php
$config = [
// Warning shown below the new wiki form (allows HTML formatting)
'newWikiWarning' => '',
'phabricatorUrl' => 'https://phabricator.wikimedia.org',
'gerritUrl' => 'https://gerrit.wikimedia.org',
// Message shown below the main form (allows HTML formatting)
'banner' => '',
// Require that patches are V+2 before building the wiki
'requireVerified' => true,
// Additional paths, e.g. for npm when using nvm
'extraPaths' => [],
// OAuth config. When enabled only authenticated users can create
// wikis, and can delete their own wikis.
'oauth' => [
'url' => null,
'callback' => null,
'key' => null,
'secret' => null,
// OAuth admins can delete any wiki
'admins' => []
],
// Conduit API key for bot cross-posting to Phabricator
'conduitApiKey' => null,
];