source: Dev/branches/play-2.0.1/samples/java/websocket-chat/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.4 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="G]IT8?InJi]pm]IUsvJBrIeJH8HWhDQdTb3]xQTD@g<Nka9hvhk9S]jnMh0dU5EJ"
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# You can expose this datasource via JNDI if needed (Useful for JPA)
27# db.default.jndiName=DefaultDS
28
29# Evolutions
30# ~~~~~
31# You can disable evolutions if needed
32# evolutions=disabled
33
34# Ebean configuration
35# ~~~~~
36# You can declare as many Ebean servers as you want.
37# By convention, the default server is named `default`
38#
39# ebean.default="models.*"
40
41# Logger
42# ~~~~~
43# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
44
45# Root logger:
46logger.root=ERROR
47
48# Robot logger:
49logger.robot=DEBUG
50
51# Logger used by the framework:
52logger.play=INFO
53
54# Logger provided to your application:
55logger.application=DEBUG
56
Note: See TracBrowser for help on using the repository browser.