~lifeless/python-oops-tools/bug-1048470

1 by Robert Collins
Export of cruft-deleted tree.
1
[buildout]
2
parts =
3
    filetemplates
4
    django
5
    docs
6
    scripts
7
    tags
8
unzip = true
9
eggs-directory = eggs
10
download-cache = download-cache
11
newest = false
12
13
# Disable this option temporarily if you want buildout to find software
14
# dependencies *other* than those in our download-cache.  Once you have the
15
# desired software, reenable this option (and check in the new software to
16
# lp:lazr-source-dependencies if this is going to be reviewed/merged/deployed.)
17
install-from-cache = true
18
19
# This also will need to be temporarily disabled or changed for package
20
# upgrades.  Newly-added packages should also add their desired version number
21
# to versions.cfg.
22
extends = versions.cfg
23
24
# allow-picked-versions = false # A buildout bug is not allowing this to work.
25
prefer-final = true
26
27
develop = .
28
29
[configuration]
30
debug = True
31
db-engine = django.db.backends.postgresql_psycopg2
32
db-name = lpoops
33
db-user = lpoops
34
db-password =
35
# Use UNIX socket to connect to the DB when running tests.
36
db-host =
37
db-port = 5433
38
root-url = http://localhost:8000
39
oopsdir = ${buildout:directory}/src/oopstools/oops/test/files/oops-sample
40
    /var/tmp/lperr
41
index-template = index.html
42
lazr-config = ${buildout:directory}/src/oopstools/oops/test/files/lazr-configs/
43
# The URI where OOPS summaries are published
44
summary-uri = https://example.com/oops-summaries
45
# The directory in the filesystem where OOPS summaries are to be written
46
summary-dir = /tmp/oops-summaries/
47
# Email address reports should be sent to. Also used in the Reply-To header of
48
# the email address.
49
report-to-address = test@example.com
50
# Email address reports should be sent from.
51
report-from-address = test@example.com
27.1.1 by Robert Collins
Report oopses when oops-tools causes a django error.
52
# Details for publishing OOPS reports that occur in the django web UI itself.
53
oops-web-amqp-host = localhost
54
oops-web-amqp-user = guest
55
oops-web-amqp-password = guest
56
oops-web-amqp-vhost = /
57
oops-web-amqp-exchange = oopses
58
oops-web-amqp-routing = 
59
oops-web-amqp-reporter = oops-tools-dev
1 by Robert Collins
Export of cruft-deleted tree.
60
61
[django]
62
recipe = djangorecipe
63
version = 1.3
64
project = oopstools
1.1.2 by Robert Collins
Unbreak make run.
65
projectegg = oopstools
1 by Robert Collins
Export of cruft-deleted tree.
66
settings = settings
67
test = oopstools
68
eggs = oops-tools
69
70
[filetemplates]
71
recipe = z3c.recipe.filetemplate
72
eggs = oops-tools
73
extra-paths = ${scripts:extra-paths}
74
source-directory = buildout-templates
75
76
[docs]
77
recipe = z3c.recipe.sphinxdoc
78
eggs = oops-tools [docs]
79
index-doc = README.txt
80
default.css =
81
layout.html =
82
83
[scripts]
84
recipe = zc.recipe.egg
85
interpreter = py
86
eggs = oops-tools
87
       docutils
88
# XXX: djangorecipe doesn't install Django as part of the normal omelette.
89
extra-paths = ${buildout:directory}/parts/django
90
initialization = import os
91
                 os.environ['DJANGO_SETTINGS_MODULE'] = 'oopstools.settings'
92
93
[tags]
94
recipe = z3c.recipe.tag:tags
95
eggs = oops-tools