source: Dev/branches/play-2.0.1/samples/java/zentasks/conf/application.conf @ 322

Last change on this file since 322 was 322, checked in by hendrikvanantwerpen, 13 years ago

Added Play! framework and application with Jena dependency. Working on
the basic things now (login/register), after that start implementing
our data model.

File size: 988 bytes
Line 
1# Configuration
2
3application.name=Zentasks
4           
5# Secret key
6# ~~~~~
7# The secret key is used to secure cryptographics functions.
8# If you deploy your application to several instances be sure to use the same key!
9application.secret="E27D^[_<Lpt0vjad]de;3/i;tx3gpRmG4Byof/3nahO/dIo9gbsMWut1w3xg[>9W"
10
11# Database configuration
12# ~~~~~
13# You can declare as many datasources as you want.
14# By convention, the default datasource is named `default`
15db.default.driver=org.h2.Driver
16db.default.url="jdbc:h2:mem:play"
17db.default.logStatements=true
18
19# Ebean configuration
20# ~~~~~
21# You can declare as many Ebean servers as you want.
22# By convention, the default server is named `default`
23ebean.default="models.*"
24
25# Logger
26# ~~~~~
27# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
28
29# Root logger:
30logger=ERROR
31
32# Logger used by the framework:
33logger.play=INFO
34
35# Logger provided to your application:
36logger.application=DEBUG
Note: See TracBrowser for help on using the repository browser.