plugins.conf.example 558 B

123456789101112131415161718
  1. ## Plugin management
  2. plugins {
  3. ## Plugins declaration
  4. ## Note: The plugins are started in the defined order
  5. states = [
  6. {
  7. ## Name and version of this plugin
  8. ## Type: Formatted String
  9. ## Format: {name}-{version}
  10. ## Note: name and version should be what it is in the plugin application
  11. name_vsn = "my_acl-0.1.0",
  12. },
  13. {name_vsn = "my_rule-0.1.1", enable = false}
  14. ]
  15. ## The installation directory for the external plugins
  16. install_dir = "plugins"
  17. }