Plugin Gitlab-Project display a Gitlab project inside Dokuwiki.
The curl library for PHP is required:
sudo apt install php-curl
Download Gitlab Project into your ${dokuwiki_root}/lib/plugins folder and restart dokuwiki or use the Extension Manager.
You can configure Gitlab-Project in the Configuration Manager of Dokuwiki:
- server.default: Set your default Gitlab url, without slash ending. You can override this setting in
server.jsonfile. - token.default: Fill your admin token. You can override this setting in
server.jsonfile. - unwanted.users: If you want to not display some users of your project, add them here, separated by commas.
Gitlab-Project will use this data by default.
<gitlab project="<NAMESPACE>/<PROJECT_NAME>" />NAMESPACE is the namespace of your project, typically the name of the user or group in which the project is located.
PROJECT_NAME is the name of project.
For e.g., if you have a project available at http://my-gitlab/foo/bar, the syntax will be:
<gitlab project="foo/bar" />Inside the root of the plugin, you will have a JSON file called: server.json. Inside you can add other servers and their tokens, than the one defined in the plugin settings.
Just call it after by its name.
E.g.:
Say that you've the following json file:
{
"second": {
"url": "http://my-second-gitlab.com",
"api_token": "a1a1a1a1a1a11a1a"
},
"third": {
"url": "http://my-third-gitlab.com",
"api_token": "b2b2b2b2b2b222b2"
}
}Then simply add server parameter:
<gitlab server="second" project="foo/bar" />For further information, see also this plugins on dokuwiki.org.