| 1 | # This file specifies the how to access local postgres databases used for |
|---|
| 2 | # building and running and InterMine.bio warehouse. Also some configuration |
|---|
| 3 | # of InterMine behaviour. |
|---|
| 4 | |
|---|
| 5 | ####################### |
|---|
| 6 | # database properties # |
|---|
| 7 | ####################### |
|---|
| 8 | |
|---|
| 9 | # if true will log details about execution time of every query |
|---|
| 10 | os.production.verboseQueryLog=true |
|---|
| 11 | |
|---|
| 12 | # Access to the postgres database to build into and access from the webapp |
|---|
| 13 | db.production.datasource.serverName=localhost |
|---|
| 14 | db.production.datasource.databaseName=malariamine |
|---|
| 15 | db.production.datasource.user=PSQL_USER |
|---|
| 16 | db.production.datasource.password=PSQL_PWD |
|---|
| 17 | |
|---|
| 18 | # Temporary database used during the build process, this is re-built |
|---|
| 19 | # as sources are loaded and can be discarded once the warehouse build is complete |
|---|
| 20 | # It uses the InterMine 'items' metadata format to describe objects. |
|---|
| 21 | |
|---|
| 22 | # common target items database |
|---|
| 23 | db.common-tgt-items.datasource.serverName=localhost |
|---|
| 24 | db.common-tgt-items.datasource.databaseName=items-malariamine |
|---|
| 25 | db.common-tgt-items.datasource.user=PSQL_USER |
|---|
| 26 | db.common-tgt-items.datasource.password=PSQL_PWD |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | # userprofile database - used by the webapp to store logins, query history, |
|---|
| 30 | # saved bags, templates and tags. |
|---|
| 31 | db.userprofile-production.datasource.serverName=localhost |
|---|
| 32 | db.userprofile-production.datasource.databaseName=userprofile-malariamine |
|---|
| 33 | db.userprofile-production.datasource.user=PSQL_USER |
|---|
| 34 | db.userprofile-production.datasource.password=PSQL_PWD |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | ##################### |
|---|
| 39 | # webapp properties # |
|---|
| 40 | ##################### |
|---|
| 41 | |
|---|
| 42 | # Web application deployment properties |
|---|
| 43 | |
|---|
| 44 | # location of tomcat server and path of webapp - e.g. access http://localhost:8080/malariamine |
|---|
| 45 | webapp.deploy.url=http://localhost:8080 |
|---|
| 46 | webapp.path=malariamine |
|---|
| 47 | |
|---|
| 48 | # tomcat username and password needed to deploy webapp |
|---|
| 49 | webapp.manager=TOMCAT_USER |
|---|
| 50 | webapp.password=TOMCAT_PWD |
|---|
| 51 | |
|---|
| 52 | # 'Home' link |
|---|
| 53 | webapp.baseurl=http://www.flymine.org |
|---|
| 54 | |
|---|
| 55 | # account name for superuser (who can edit appearance and publish templates) |
|---|
| 56 | superuser.account=test_user@mail_account |
|---|
| 57 | superuser.initialPassword=secret |
|---|
| 58 | |
|---|
| 59 | # run with no associated web site |
|---|
| 60 | project.standalone=true |
|---|
| 61 | |
|---|
| 62 | # details for sending login e-mails |
|---|
| 63 | mail.host=localhost |
|---|
| 64 | mail.from=account@my_mail_host |
|---|
| 65 | mail.subject=Welcome to MalariaMine |
|---|
| 66 | mail.text=You have successfully created an account on MalariaMine |
|---|
| 67 | |
|---|
| 68 | # text that appears in the header and elsewhere |
|---|
| 69 | project.title=MalariaMine |
|---|
| 70 | project.subTitle=An example of InterMine.bio with data from <i>Plasmodium falciparum</i> |
|---|
| 71 | project.releaseVersion=tutorial |
|---|
| 72 | |
|---|
| 73 | # various URLs use this as the prefix |
|---|
| 74 | project.sitePrefix=http://www.flymine.org |
|---|
| 75 | project.helpLocation=http://www.flymine.org/help |
|---|
| 76 | |
|---|
| 77 | # recipient of feedback form located on bottom of every page |
|---|
| 78 | feedback.destination = test_user@mail_address |
|---|
| 79 | |
|---|