Advertisement
rusticbit

application_conf

Feb 3rd, 2013
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. # This is the main configuration file for the application.
  2. # ~~~~~
  3.  
  4. # Secret key
  5. # ~~~~~
  6. # The secret key is used to secure cryptographics functions.
  7. # If you deploy your application to several instances be sure to use the same key!
  8. application.secret="##############################################################"
  9.  
  10. # The application languages
  11. # ~~~~~
  12. application.langs="en"
  13.  
  14. # Global object class
  15. # ~~~~~
  16. # Define the Global object class for this application.
  17. # Default to Global in the root package.
  18. global=Global
  19.  
  20. # Database configuration
  21. # ~~~~~
  22. # You can declare as many datasources as you want.
  23. # By convention, the default datasource is named `default`
  24. #
  25. db.default.driver=org.h2.Driver
  26. db.default.url="jdbc:h2:mem:play"
  27.  
  28. # You can expose this datasource via JNDI if needed (Useful for JPA)
  29. db.default.jndiName=DefaultDS
  30.  
  31. # Evolutions
  32. # ~~~~~
  33. # You can disable evolutions if needed
  34. # evolutionplugin=disabled
  35.  
  36. # JPA configuration
  37. # ~~~~~
  38. # You can declare as many Ebean servers as you want.
  39. # By convention, the default server is named `default`
  40. jpa.default=defaultPersistenceUnit
  41.  
  42. # Logger
  43. # ~~~~~
  44. # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
  45.  
  46. # Root logger:
  47. logger.root=ERROR
  48.  
  49. # Logger used by the framework:
  50. logger.play=INFO
  51.  
  52. # Logger provided to your application:
  53. logger.application=DEBUG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement