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 |
---|
8 | grails.serverURL=http://demo.dbnp.org |
---|
9 | |
---|
10 | # DATABASE |
---|
11 | dataSource.driverClassName=org.postgresql.Driver |
---|
12 | dataSource.dialect=org.hibernate.dialect.PostgreSQLDialect |
---|
13 | dataSource.url=jdbc:postgresql://localhost:5432/gscf-demo |
---|
14 | dataSource.dbCreate=update |
---|
15 | dataSource.username=gscf |
---|
16 | dataSource.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) |
---|
26 | grails.mail.host=smtp.gmail.com |
---|
27 | grails.mail.username=gscf.default.installation@gmail.com |
---|
28 | grails.mail.password=s7udycap7r3 |
---|
29 | |
---|
30 | # SpringSecurity E-Mail Settings |
---|
31 | grails.plugins.springsecurity.ui.forgotPassword.emailFrom=gscf.default.installation@gmail.com |
---|
32 | |
---|
33 | # module configuration |
---|
34 | modules.sam.url=http://demo.sam.dbnp.org |
---|
35 | modules.metabolomics.url=http://demo.metabolomics.dbnp.org |
---|
36 | modules.metagenomics.url=http://demo.metagenomics.dbnp.org |
---|
37 | |
---|
38 | # Number of seconds to keep rest results from modules in cache |
---|
39 | modules.cacheDuration = 600 |
---|
40 | |
---|
41 | # default application users |
---|
42 | authentication.users.admin.username=admin |
---|
43 | authentication.users.admin.password=admiN123! |
---|
44 | authentication.users.admin.email=admin@dbnp.org |
---|
45 | authentication.users.admin.administrator=true |
---|
46 | authentication.users.user.username=user |
---|
47 | authentication.users.user.password=useR123! |
---|
48 | authentication.users.user.email=user@dbnp.org |
---|
49 | authentication.users.user.administrator=false |
---|