source: Dev/branches/play-2.0.1/samples/java/computer-database-jpa/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
3# Secret key
4# ~~~~~
5# The secret key is used to secure cryptographics functions.
6# If you deploy your application to several instances be sure to use the same key!
7application.secret="E27D^[_<Lpt0vjad]de;3/i;tx3gpRmG4Byof/3nahO/dIo9gbsMWut1w3xg[>9W"
8
9# Database configuration
10# ~~~~~
11# You can declare as many datasources as you want.
12# By convention, the default datasource is named `default`
13db.default.driver=org.h2.Driver
14db.default.url="jdbc:h2:mem:play"
15db.default.jndiName=DefaultDS
16
17# JPA configuration
18# ~~~~~
19# You can declare as many Ebean servers as you want.
20# By convention, the default server is named `default`
21jpa.default=defaultPersistenceUnit
22
23# Assets configuration
24# ~~~~~
25"assets.cache./public/stylesheets/bootstrap.min.css"="max-age=3600"
26
27# Logger
28# ~~~~~
29# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
30
31# Root logger:
32logger=ERROR
33
34# Logger used by the framework:
35logger.play=INFO
36
37# Logger provided to your application:
38logger.application=DEBUG
39
40
41
42
Note: See TracBrowser for help on using the repository browser.