application.conf 396 B

1234567891011121314
  1. # add or override properties
  2. # See https://github.com/typesafehub/config/blob/master/HOCON.md for more details
  3. application.env = prod
  4. ## server threads
  5. server.threads.Min = ${runtime.processors}
  6. server.threads.Max = ${runtime.processors-x2}
  7. netty.threads.Worker = 4
  8. ## database
  9. db.url = "jdbc:postgresql://TFB-database:5432/hello_world"
  10. db.user = benchmarkdbuser
  11. db.password = benchmarkdbpass