[1361] | 1 | # Continuous Integration build default configuration |
---|
| 2 | # |
---|
| 3 | # $Author: j.saito@maastrichtuniversity.nl $ |
---|
| 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://ci.nmcdsp.org |
---|
[1361] | 9 | |
---|
| 10 | # DATABASE |
---|
| 11 | dataSource.driverClassName=org.postgresql.Driver |
---|
| 12 | dataSource.dialect=org.hibernate.dialect.PostgreSQLDialect |
---|
| 13 | dataSource.url=jdbc:postgresql://localhost:5432/gscf-ci |
---|
| 14 | dataSource.dbCreate=update |
---|
| 15 | dataSource.username=gscf |
---|
| 16 | dataSource.password=dbnp |
---|
| 17 | #dataSource.logSql=true |
---|
| 18 | |
---|
| 19 | # E-MAIL |
---|
[1459] | 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) |
---|
[1361] | 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://ci.sam.nmcdsp.org |
---|
| 35 | modules.metabolomics.url=http://ci.metabolomics.nmcdsp.org |
---|
| 36 | modules.metagenomics.url=http://ci.metagenomics.nmcdsp.org |
---|
[1364] | 37 | |
---|
[1501] | 38 | # Number of seconds to keep rest results from modules in cache |
---|
| 39 | modules.cacheDuration = 600 |
---|
| 40 | |
---|
[1364] | 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 |
---|