This variable make it easy, that TW will find 3rd party plugins. eg:
I don my plugins in a completely different structure as TWs directory structure.
My TIDDLYWIKI_PLUGIN_PATH=D:\path\to\my\plugins ...
The whole structure is: D:\path\to\my\plugins\wikilabs\<plugin-name>
This makes it possible to add one of my plugins into tiddlywik.info like so:
{
"description": "Server configuration of the wikilabs edition",
"plugins": [
"tiddlywiki/tiddlyweb",
"tiddlywiki/filesystem",
"wikilabs/link-to-tabs",
"wikilabs/info-session",
"wikilabs/advanced-search-plus"
],
"themes": [
],
"includeWikis": [
"../link-to-tabs"
],
"config": {
"default-tiddler-location": "../link-to-tabs/tiddlers"
}
}
This makes development much easier, since I don't need to add the full directory name.
The environment variables can have several paths, with are separated by a semicolon ";" in windows and a colon ":" for unix-like systems
have fun!
mario