source: trunk/grails-app/conf/config-dbnpdemo.properties @ 1501

Last change on this file since 1501 was 1501, checked in by robert@…, 12 years ago
  • Number of seconds for the rest controller to keep data in cache is now a configuration option
  • After searching, it is possible to choose which action to perform on the search results.
  • Property svn:keywords set to Rev Author Date
File size: 1.5 KB
Line 
1# DBNP Demo build default configuration
2#
3# $Author: robert@isdat.nl $
4# $Date: 2011-02-07 15:07:54 +0000 (ma, 07 feb 2011) $
5# $Rev: 1501 $
6
7# server URL
8grails.serverURL=http://demo.dbnp.org
9
10# DATABASE
11dataSource.driverClassName=org.postgresql.Driver
12dataSource.dialect=org.hibernate.dialect.PostgreSQLDialect
13dataSource.url=jdbc:postgresql://localhost:5432/gscf-demo
14dataSource.dbCreate=update
15dataSource.username=gscf
16dataSource.password=dbnp
17#dataSource.logSql=true
18
19# E-MAIL
20# use authenticated smtp (make sure your firewall allows
21# outbound connections on port 465), or
22#  - comment username and password to use non-authenticated
23#    mail (on port 25)
24#  - comment out all to use local mailer (e.g. postfix /
25#    sendmail on port 25)
26grails.mail.host=smtp.gmail.com
27grails.mail.username=gscf.default.installation@gmail.com
28grails.mail.password=s7udycap7r3
29
30# SpringSecurity E-Mail Settings
31grails.plugins.springsecurity.ui.forgotPassword.emailFrom=gscf.default.installation@gmail.com
32
33# module configuration
34modules.sam.url=http://demo.sam.dbnp.org
35modules.metabolomics.url=http://demo.metabolomics.dbnp.org
36modules.metagenomics.url=http://demo.metagenomics.dbnp.org
37
38# Number of seconds to keep rest results from modules in cache
39modules.cacheDuration = 600
40
41# default application users
42authentication.users.admin.username=admin
43authentication.users.admin.password=admiN123!
44authentication.users.admin.email=admin@dbnp.org
45authentication.users.admin.administrator=true
46authentication.users.user.username=user
47authentication.users.user.password=useR123!
48authentication.users.user.email=user@dbnp.org
49authentication.users.user.administrator=false
Note: See TracBrowser for help on using the repository browser.