Difference between revisions of "Installation"
From Tweeki
Line 44: | Line 44: | ||
=== Example configurations === | === Example configurations === | ||
− | Have a look at the [[setup for tweeki. | + | Have a look at the [[setup for tweeki.kollabor.at]] (this page) to get an idea of how to achieve similar results or look at [[setup for skriptenforum.net]] for a more elaborate example. |
=== Basic Configuration === | === Basic Configuration === | ||
* Change the navigation according to your needs, e.g. change the content of <code>MediaWiki:Tweeki-navbar-left</code> to <code>Products</code> to link to a page of that name. | * Change the navigation according to your needs, e.g. change the content of <code>MediaWiki:Tweeki-navbar-left</code> to <code>Products</code> to link to a page of that name. |
Revision as of 11:29, 30 December 2021
Compatibility
Installation
You can Download Tweeki from GitHub or get it directly with git:
Change to the "skins" subdirectory of your MediaWiki installation:
cd skins
Clone the repository:
git clone https://github.com/thaider/Tweeki
To checkout a specific (tagged) version:
git checkout v1.2.0
Add the following to LocalSettings.php:
require_once( "$IP/skins/Tweeki/Tweeki.php" ); $wgDefaultSkin = "tweeki";
(You may safely remove or comment out other mentions of $wgDefaultSkin.)
Add the following to LocalSettings.php if you want to use Bootstrap 4:
$wgTweekiSkinUseBootstrap4 = true;
Example configurations
Have a look at the setup for tweeki.kollabor.at (this page) to get an idea of how to achieve similar results or look at setup for skriptenforum.net for a more elaborate example.
Basic Configuration
- Change the navigation according to your needs, e.g. change the content of
MediaWiki:Tweeki-navbar-left
toProducts
to link to a page of that name.