Skip to content
Carlos Eduardo Melo edited this page Dec 29, 2016 · 1 revision

Default configuration in application.conf

duna {
  thread-pool-size = 20

  classpath {
    parallel = true
    thread-pool-size = 6

    scan-packages = ["io.duna"]
    ignore-packages = [
      "io.vertx",
      "org.apache",
      "io.github.lukehutch",
      "javax",
      "kotlin",
      "kotlinx",
      "scala",
      "com.hazelcast",
      "com.google",
      "com.typesafe",
      "net.bytebuddy",
    ]
  }

  cluster {
    local-addresses = ["127.0.0.1"]
    local-port-range = "5001:5009"
    use-multicast = false
    hosts = []
  }

  web {
    host = "127.0.0.1"
    port = 8080
  }

  vertx {
    ha-enabled = false
  }
}
Clone this wiki locally