Merge "Add .pipeline/ with dev image variant"
[lhc/web/wiklou.git] / includes / DevelopmentSettings.php
1 <?php
2 /**
3 * Extra settings useful for MediaWiki development.
4 *
5 * To enable built-in debug and development settings, add the
6 * following to your LocalSettings.php file.
7 *
8 * require "$IP/includes/DevelopmentSettings.php";
9 *
10 * Alternatively, if running phpunit.php (or another Maintenance script),
11 * you can use the --mwdebug option to automatically load these settings.
12 *
13 * @file
14 */
15
16 /**
17 * Debugging for PHP
18 */
19
20 // Enable showing of errors
21 error_reporting( -1 );
22 ini_set( 'display_errors', 1 );
23
24 /**
25 * Debugging for MediaWiki
26 */
27
28 global $wgDevelopmentWarnings, $wgShowExceptionDetails, $wgShowHostnames,
29 $wgDebugRawPage, $wgCommandLineMode, $wgDebugLogFile,
30 $wgDBerrorLog, $wgDebugLogGroups, $wgLocalisationCacheConf;
31
32 // Use of wfWarn() should cause tests to fail
33 $wgDevelopmentWarnings = true;
34
35 // Enable showing of errors
36 $wgShowExceptionDetails = true;
37 $wgShowHostnames = true;
38 $wgDebugRawPage = true; // T49960
39
40 // Enable log files
41 $logDir = getenv( 'MW_LOG_DIR' );
42 if ( $logDir ) {
43 if ( $wgCommandLineMode ) {
44 $wgDebugLogFile = "$logDir/mw-debug-cli.log";
45 } else {
46 $wgDebugLogFile = "$logDir/mw-debug-www.log";
47 }
48 $wgDBerrorLog = "$logDir/mw-dberror.log";
49 $wgDebugLogGroups['ratelimit'] = "$logDir/mw-ratelimit.log";
50 $wgDebugLogGroups['exception'] = "$logDir/mw-exception.log";
51 $wgDebugLogGroups['error'] = "$logDir/mw-error.log";
52 }
53 unset( $logDir );
54
55 /**
56 * Make testing possible (or easier)
57 */
58
59 global $wgRateLimits;
60
61 // Disable rate-limiting to allow integration tests to run unthrottled
62 // in CI and for devs locally (T225796)
63 $wgRateLimits = [];
64
65 /**
66 * Experimental changes that may later become the default.
67 * (Must reference a Phabricator ticket)
68 */
69
70 global $wgSQLMode, $wgLegacyJavaScriptGlobals;
71
72 // Enable MariaDB/MySQL strict mode (T108255)
73 $wgSQLMode = 'TRADITIONAL';
74
75 // Disable legacy javascript globals in CI and for devs (T72470)
76 $wgLegacyJavaScriptGlobals = false;
77
78 // Localisation Cache to StaticArray (T218207)
79 $wgLocalisationCacheConf['store'] = 'array';