1 | # Development build default configuration |
---|
2 | # |
---|
3 | # $Author: m.s.vanvliet@lacdr.leidenuniv.nl $ |
---|
4 | # $Date: 2011-11-15 15:47:46 +0000 (di, 15 nov 2011) $ |
---|
5 | # $Rev: 2107 $ |
---|
6 | |
---|
7 | # server URL |
---|
8 | grails.serverURL=http://localhost:8080/gscf |
---|
9 | |
---|
10 | # DATABASE |
---|
11 | dataSource.driverClassName=org.hsqldb.jdbcDriver |
---|
12 | dataSource.url=jdbc:hsqldb:mem:devDB |
---|
13 | dataSource.dbCreate=create-drop |
---|
14 | dataSource.username=sa |
---|
15 | dataSource.password= |
---|
16 | #dataSource.logSql=true |
---|
17 | |
---|
18 | # SpringSecurity E-Mail Settings |
---|
19 | grails.plugins.springsecurity.ui.forgotPassword.emailFrom=gscf.default.installation@gmail.com |
---|
20 | |
---|
21 | # module configuration |
---|
22 | modules.sam.url=http://localhost:8182/sam |
---|
23 | modules.metabolomics.url=http://localhost:8083/metabolomicsModule |
---|
24 | modules.massSequencing.url=http://localhost:8184/massSequencing |
---|
25 | |
---|
26 | # Number of seconds to keep rest results from modules in cache |
---|
27 | modules.cacheDuration=900 |
---|
28 | modules.showInMenu=true |
---|
29 | |
---|
30 | # default application users |
---|
31 | authentication.users.admin.username=admin |
---|
32 | authentication.users.admin.password=admiN123! |
---|
33 | authentication.users.admin.email=admin@dbnp.org |
---|
34 | authentication.users.admin.administrator=true |
---|
35 | authentication.users.user.username=user |
---|
36 | authentication.users.user.password=useR123! |
---|
37 | authentication.users.user.email=user@dbnp.org |
---|
38 | authentication.users.user.administrator=false |
---|
39 | |
---|
40 | # configuration parameter to define if shibboleth |
---|
41 | # authentication is enabled in apache running in |
---|
42 | # front of the Grails application. By default this |
---|
43 | # is set to false and can be overwritten to true in |
---|
44 | # an externalized confgiration (see ~/.gscf/*.properties) |
---|
45 | # More information is available here: |
---|
46 | # https://trac.nbic.nl/gscf/ticket/501 |
---|
47 | authentication.shibboleth=false |
---|