application.conf 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # This is the main configuration file for the application.
  2. # ~~~~~
  3. # Secret key
  4. # ~~~~~
  5. # The secret key is used to secure cryptographics functions.
  6. # If you deploy your application to several instances be sure to use the same key!
  7. application.secret="RItx1I:80?W@]8GAtPDuF8Ydd3mXM85p/<7og]Q;uBOdijQAauRDgu73B6`wQP59"
  8. # The application languages
  9. # ~~~~~
  10. application.langs="en"
  11. # Global object class
  12. # ~~~~~
  13. # Define the Global object class for this application.
  14. # Default to Global in the root package.
  15. # global=Global
  16. # Database configuration
  17. # ~~~~~
  18. # You can declare as many datasources as you want.
  19. # By convention, the default datasource is named `default`
  20. #
  21. #db.default.driver=org.h2.Driver
  22. #db.default.url="jdbc:h2:mem:play"
  23. #db.default.user=sa
  24. # db.default.password=
  25. #
  26. # You can expose this datasource via JNDI if needed (Useful for JPA)
  27. # db.default.jndiName=DefaultDS
  28. #mongodb.servers = ["192.168.100.101:27017"]
  29. mongodb.servers = ["localhost:27017"]
  30. mongodb.db = "hello_world"
  31. # Evolutions
  32. # ~~~~~
  33. # You can disable evolutions if needed
  34. # evolutionplugin=disabled
  35. # Logger
  36. # ~~~~~
  37. # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
  38. # Root logger:
  39. logger.root=ERROR
  40. # Logger used by the framework:
  41. logger.play=ERROR
  42. # Logger provided to your application:
  43. logger.application=ERROR
  44. #play {
  45. # akka {
  46. # event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
  47. # loglevel = ERROR
  48. # actor {
  49. # dbExecutionContext = {
  50. # fork-join-executor {
  51. # parallelism-min = 128
  52. # parallelism-max = 128
  53. # }
  54. # }
  55. # }
  56. # }
  57. #}