MediaWiki-Docker/Extension/CodeMirror
This page is currently a draft.
|
This page instructs you to install Extension:CodeMirror inside MediaWiki-Docker.
Follow the Quickstart instructions at MediaWiki-Docker page. Once MediaWiki is running and available at http://localhost:8080
then install VisualEditor. Finally, continue with instructions on this page.
All commands should be run in the directory where you installed MediaWiki. All mentioned files are also located there.
Clone the repository and its dependencies
editgit clone "https://gerrit.wikimedia.org/r/mediawiki/skins/Vector" skins/Vector
git clone "https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror" extensions/CodeMirror
git clone "https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor" extensions/WikiEditor
Modify LocalSettings.php
editIf not already there, add this to the end of LocalSettings.php
.
wfLoadSkin( 'Vector' );
wfLoadExtension( 'CodeMirror' );
wfLoadExtension( 'WikiEditor' );
Run maintenance scripts
editdocker compose exec mediawiki php maintenance/run.php update.php