~launchpad-pqm/launchpad/devel

7245.1.4 by Guilherme Salgado
make schema will now create two new DBs (launchpad_dev_template and launchpad_ftest_playground). make newsampledata will use different DBs for the dev/test sampledata and lint.sh will complain if either current.sql or current-dev.sql don't match dumps of their DB.
1
# Identify the component configuration used to define the site:
2
site-definition site.zcml
3
4
# Turn on Zope3 developer mode.
5
devmode on
6
7
# number of bytecode instructions to execute between checks for
8
# interruptions (SIGINTR, thread switches):
9
interrupt-check-interval 200
10
11
<server>
12
  type HTTP
13
  address 8085
14
</server>
15
16
# For debugging purposes, you can use this publisher instead/as well
17
# (obviously if it's as well, use a different port number). If there's
18
# an exception, Zope will drop into pdb at the point of the exception.
19
<server>
20
  type PostmortemDebuggingHTTP
21
  address 8089
22
</server>
23
24
<server>
25
  type DebugLayerHTTP
26
  address 8086
27
</server>
28
29
<server>
30
  type PrivateXMLRPC
31
  address 8087
32
</server>
33
34
# non-persistent in-memory storage
35
<zodb>
36
  <mappingstorage/>
37
</zodb>
38
39
<accesslog>
40
  # This sets up logging to both a file (access.log) and to standard
41
  # output (STDOUT).  The "path" setting can be a relative or absolute
42
  # filesystem path or the tokens STDOUT or STDERR.
43
44
  <logfile>
45
    path logs/launchpad-access.log
11795.3.1 by Ian Booth
Initial coding
46
  </logfile>
7245.1.4 by Guilherme Salgado
make schema will now create two new DBs (launchpad_dev_template and launchpad_ftest_playground). make newsampledata will use different DBs for the dev/test sampledata and lint.sh will complain if either current.sql or current-dev.sql don't match dumps of their DB.
47
48
  <logfile>
49
    path STDOUT
50
  </logfile>
51
</accesslog>
52
53
<eventlog>
54
  # This sets up logging to both a file (z3.log) and to standard
55
  # output (STDOUT).  The "path" setting can be a relative or absolute
56
  # filesystem path or the tokens STDOUT or STDERR.
57
58
  <logfile>
59
    path logs/launchpad.log
11795.3.1 by Ian Booth
Initial coding
60
  </logfile>
7245.1.4 by Guilherme Salgado
make schema will now create two new DBs (launchpad_dev_template and launchpad_ftest_playground). make newsampledata will use different DBs for the dev/test sampledata and lint.sh will complain if either current.sql or current-dev.sql don't match dumps of their DB.
61
62
  <logfile>
63
    path STDOUT
64
  </logfile>
65
</eventlog>
66
67
<logger>
68
  name zc.tracelog
9418.4.1 by Gary Poster
move tracelog back to the trace.log, and out of stdout and the main log.
69
  propagate false
7245.1.4 by Guilherme Salgado
make schema will now create two new DBs (launchpad_dev_template and launchpad_ftest_playground). make newsampledata will use different DBs for the dev/test sampledata and lint.sh will complain if either current.sql or current-dev.sql don't match dumps of their DB.
70
71
  <logfile>
72
    format %(message)s
73
    path logs/trace.log
11795.3.1 by Ian Booth
Initial coding
74
  </logfile>
7245.1.4 by Guilherme Salgado
make schema will now create two new DBs (launchpad_dev_template and launchpad_ftest_playground). make newsampledata will use different DBs for the dev/test sampledata and lint.sh will complain if either current.sql or current-dev.sql don't match dumps of their DB.
75
76
</logger>
77