[1361] | 1 | # Development build default configuration |
---|
| 2 | # |
---|
| 3 | # $Author: s.h.sikkema@gmail.com $ |
---|
| 4 | # $Date: 2011-02-07 15:07:54 +0000 (ma, 07 feb 2011) $ |
---|
| 5 | # $Rev: 1501 $ |
---|
| 6 | |
---|
| 7 | # server URL |
---|
[1431] | 8 | grails.serverURL=http://localhost:8080/gscf |
---|
[1361] | 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 | # E-MAIL |
---|
[1459] | 19 | # use authenticated smtp (make sure your firewall allows |
---|
| 20 | # outbound connections on port 465), or |
---|
| 21 | # - comment username and password to use non-authenticated |
---|
| 22 | # mail (on port 25) |
---|
| 23 | # - comment out all to use local mailer (e.g. postfix / |
---|
| 24 | # sendmail on port 25) |
---|
[1361] | 25 | grails.mail.host=smtp.gmail.com |
---|
| 26 | grails.mail.username=gscf.default.installation@gmail.com |
---|
| 27 | grails.mail.password=s7udycap7r3 |
---|
| 28 | |
---|
| 29 | # SpringSecurity E-Mail Settings |
---|
| 30 | grails.plugins.springsecurity.ui.forgotPassword.emailFrom=gscf.default.installation@gmail.com |
---|
| 31 | |
---|
| 32 | # module configuration |
---|
| 33 | modules.sam.url=http://localhost:8182/sam |
---|
| 34 | modules.metabolomics.url=http://localhost:8183/nmcdsp |
---|
[1364] | 35 | modules.metagenomics.url=http://localhost:8184/metagenomics |
---|
| 36 | |
---|
[1501] | 37 | # Number of seconds to keep rest results from modules in cache |
---|
| 38 | modules.cacheDuration = 0 |
---|
| 39 | |
---|
[1364] | 40 | # default application users |
---|
| 41 | authentication.users.admin.username=admin |
---|
| 42 | authentication.users.admin.password=admiN123! |
---|
| 43 | authentication.users.admin.email=admin@dbnp.org |
---|
| 44 | authentication.users.admin.administrator=true |
---|
| 45 | authentication.users.user.username=user |
---|
| 46 | authentication.users.user.password=useR123! |
---|
| 47 | authentication.users.user.email=user@dbnp.org |
---|
| 48 | authentication.users.user.administrator=false |
---|