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