123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # This is the main configuration file for the application.
- # ~~~~~
- # Secret key
- # ~~~~~
- # The secret key is used to secure cryptographics functions.
- # If you deploy your application to several instances be sure to use the same key!
- application.secret="fXYT0c[h_gT_ZtlDbpJESb=22p;R62HO5nvwgN3RI<3ZsIVu04UsP;HiMeFbFpns"
- # Global object class
- # ~~~~~
- # Define the Global object class for this application.
- # Default to Global in the root package.
- # global=Global
- # Database configuration
- # ~~~~~
- # You can declare as many datasources as you want.
- # By convention, the default datasource is named `default`
- #
- db.default.driver=org.postgresql.Driver
- db.default.url="jdbc:postgresql:gamenchat"
- db.default.user=postgres
- # Evolutions
- # ~~~~~
- # You can disable evolutions if needed
- # evolutions=disabled
- # Logger
- # ~~~~~
- # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
- # Root logger:
- logger.root=INFO
- # Robot
- logger.robot=INFO
- # Logger used by the framework:
- logger.play=INFO
- # Logger provided to your application:
- logger.application=DEBUG
|