Demo app using the Scala Play framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

59 lines
1.6 KiB

11 years ago
11 years ago
  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="IHmuUsffeQAPhy20]fYAUPKJ/lX:ZgYc3tMdD6xtAWfL3xpuYPYRvpqe]ufoixee"
  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. # application.global=Global
  16. # Router
  17. # ~~~~~
  18. # Define the Router object to use for this application.
  19. # This router will be looked up first when the application is starting up,
  20. # so make sure this is the entry point.
  21. # Furthermore, it's assumed your route file is named properly.
  22. # So for an application router like `my.application.Router`,
  23. # you may need to define a router file `conf/my.application.routes`.
  24. # Default to Routes in the root package (and conf/routes)
  25. # application.router=my.application.Routes
  26. # Database configuration
  27. # ~~~~~
  28. # You can declare as many datasources as you want.
  29. # By convention, the default datasource is named `default`
  30. #
  31. db.default.driver=org.h2.Driver
  32. db.default.url="jdbc:h2:mem:play"
  33. # db.default.user=sa
  34. # db.default.password=""
  35. # Evolutions
  36. # ~~~~~
  37. # You can disable evolutions if needed
  38. # evolutionplugin=disabled
  39. # Logger
  40. # ~~~~~
  41. # You can also configure logback (http://logback.qos.ch/),
  42. # by providing an application-logger.xml file in the conf directory.
  43. # Root logger:
  44. logger.root=ERROR
  45. # Logger used by the framework:
  46. logger.play=INFO
  47. # Logger provided to your application:
  48. logger.application=DEBUG