Configuration #
When Kuzzle calls the plugin init
method, it passes the plugin's custom configuration to it.
Custom configuration parameters are specified for each plugin in the plugins
object of the Kuzzle configuration file.
For example:
{
"plugins": {
"foobar-plugin": {
"option_1": "option_value",
"option_2": "option_value"
}
}
}
Edit this page on Github(opens new window)