application.conf 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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="fXYT0c[h_gT_ZtlDbpJESb=22p;R62HO5nvwgN3RI<3ZsIVu04UsP;HiMeFbFpns"
  8. # Global object class
  9. # ~~~~~
  10. # Define the Global object class for this application.
  11. # Default to Global in the root package.
  12. # global=Global
  13. # Database configuration
  14. # ~~~~~
  15. # You can declare as many datasources as you want.
  16. # By convention, the default datasource is named `default`
  17. #
  18. # db.default.driver=org.h2.Driver
  19. # db.default.url="jdbc:h2:mem:play"
  20. # db.default.user=sa
  21. # db.default.password=""
  22. # Evolutions
  23. # ~~~~~
  24. # You can disable evolutions if needed
  25. # evolutions=disabled
  26. # Logger
  27. # ~~~~~
  28. # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
  29. # Root logger:
  30. logger.root=INFO
  31. # Robot
  32. logger.robot=INFO
  33. # Logger used by the framework:
  34. logger.play=INFO
  35. # Logger provided to your application:
  36. logger.application=DEBUG