source: Dev/branches/play-2.0.1/samples/java/computer-database/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.0 KB
Line 
1# Configuration
2
3application.name=computer-database
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"
17
18# Ebean configuration
19# ~~~~~
20# You can declare as many Ebean servers as you want.
21# By convention, the default server is named `default`
22ebean.default="models.*"
23
24# Assets configuration
25# ~~~~~
26"assets.cache./public/stylesheets/bootstrap.min.css"="max-age=3600"
27
28# Logger
29# ~~~~~
30# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
31
32# Root logger:
33logger=ERROR
34
35# Logger used by the framework:
36logger.play=INFO
37
38# Logger provided to your application:
39logger.application=DEBUG
40
41
42
43
Note: See TracBrowser for help on using the repository browser.