source: trunk/bio/tutorial/malariamine/malariamine.properties @ 28953

Revision 28953, 2.6 KB checked in by julie, 8 weeks ago (diff)

remove obsolete parameter

Line 
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
10os.production.verboseQueryLog=true
11
12# Access to the postgres database to build into and access from the webapp
13db.production.datasource.serverName=localhost
14db.production.datasource.databaseName=malariamine
15db.production.datasource.user=PSQL_USER
16db.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
23db.common-tgt-items.datasource.serverName=localhost
24db.common-tgt-items.datasource.databaseName=items-malariamine
25db.common-tgt-items.datasource.user=PSQL_USER
26db.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.
31db.userprofile-production.datasource.serverName=localhost
32db.userprofile-production.datasource.databaseName=userprofile-malariamine
33db.userprofile-production.datasource.user=PSQL_USER
34db.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
45webapp.deploy.url=http://localhost:8080
46webapp.path=malariamine
47
48# tomcat username and password needed to deploy webapp
49webapp.manager=TOMCAT_USER
50webapp.password=TOMCAT_PWD
51
52# 'Home' link
53webapp.baseurl=http://www.flymine.org
54
55# account name for superuser (who can edit appearance and publish templates)
56superuser.account=test_user@mail_account
57superuser.initialPassword=secret
58
59# run with no associated web site
60project.standalone=true
61
62# details for sending login e-mails
63mail.host=localhost
64mail.from=account@my_mail_host
65mail.subject=Welcome to MalariaMine
66mail.text=You have successfully created an account on MalariaMine
67
68# text that appears in the header and elsewhere
69project.title=MalariaMine
70project.subTitle=An example of InterMine.bio with data from <i>Plasmodium falciparum</i>
71project.releaseVersion=tutorial
72
73# various URLs use this as the prefix
74project.sitePrefix=http://www.flymine.org
75project.helpLocation=http://www.flymine.org/help
76
77# recipient of feedback form located on bottom of every page
78feedback.destination = test_user@mail_address
79
Note: See TracBrowser for help on using the repository browser.