source: Dev/branches/play-2.0.1/samples/scala/comet-clock/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: 1.1 KB
Line 
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!
8application.secret="RXd?[5P43DQ<NXXX/6Y@F2`cifo<8FbotAR]?w4LWJWU3l]E31iTghaA8mNnMRO]"
9
10# Global object class
11# ~~~~~
12# Define the Global object class for this application.
13# Default to Global in the root package.
14# global=Global
15
16# Database configuration
17# ~~~~~
18# You can declare as many datasources as you want.
19# By convention, the default datasource is named `default`
20#
21# db.default.driver=org.h2.Driver
22# db.default.url="jdbc:h2:mem:play"
23# db.default.user=sa
24# db.default.password=
25
26# Evolutions
27# ~~~~~
28# You can disable evolutions if needed
29# evolutionplugin=disabled
30
31# Logger
32# ~~~~~
33# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
34
35# Root logger:
36logger.root=ERROR
37
38# Logger used by the framework:
39logger.play=INFO
40
41# Logger provided to your application:
42logger.application=DEBUG
43
Note: See TracBrowser for help on using the repository browser.