source: Dev/branches/play-2.0.1/samples/scala/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: 895 bytes
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;tx3gpRmG4ByofnahOIo9gbsMWut1w3xg[>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# Assets configuration
19# ~~~~~
20"assets.cache./public/stylesheets/bootstrap.min.css"="max-age=3600"
21
22# Logger
23# ~~~~~
24# You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
25
26# Root logger:
27logger.root=ERROR
28
29# Logger used by the framework:
30logger.play=INFO
31
32# Logger provided to your application:
33logger.application=DEBUG
34
35
36
37
38
Note: See TracBrowser for help on using the repository browser.