application.conf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.postgresql.Driver
  19. db.default.url="jdbc:postgresql:gamenchat"
  20. db.default.user=postgres
  21. # Evolutions
  22. # ~~~~~
  23. # You can disable evolutions if needed
  24. # evolutions=disabled
  25. # Logger
  26. # ~~~~~
  27. # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
  28. # Root logger:
  29. logger.root=INFO
  30. # Robot
  31. logger.robot=INFO
  32. # Logger used by the framework:
  33. logger.play=INFO
  34. # Logger provided to your application:
  35. logger.application=DEBUG