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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[buildout]
parts =
    filetemplates
    django
    docs
    scripts
    tags
unzip = true
eggs-directory = eggs
download-cache = download-cache
newest = false

# Disable this option temporarily if you want buildout to find software
# dependencies *other* than those in our download-cache.  Once you have the
# desired software, reenable this option (and check in the new software to
# lp:lazr-source-dependencies if this is going to be reviewed/merged/deployed.)
install-from-cache = true

# This also will need to be temporarily disabled or changed for package
# upgrades.  Newly-added packages should also add their desired version number
# to versions.cfg.
extends = versions.cfg

# allow-picked-versions = false # A buildout bug is not allowing this to work.
prefer-final = true

develop = .

[configuration]
debug = True
db-engine = django.db.backends.postgresql_psycopg2
db-name = lpoops
db-user = lpoops
db-password =
# Use UNIX socket to connect to the DB when running tests.
db-host =
db-port = 5433
root-url = http://localhost:8000
oopsdir = ${buildout:directory}/src/oopstools/oops/test/files/oops-sample
    /var/tmp/lperr
index-template = index.html
lazr-config = ${buildout:directory}/src/oopstools/oops/test/files/lazr-configs/
# The URI where OOPS summaries are published
summary-uri = https://example.com/oops-summaries
# The directory in the filesystem where OOPS summaries are to be written
summary-dir = /tmp/oops-summaries/
# Email address reports should be sent to. Also used in the Reply-To header of
# the email address.
report-to-address = test@example.com
# Email address reports should be sent from.
report-from-address = test@example.com
# Details for publishing OOPS reports that occur in the django web UI itself.
oops-web-amqp-host = localhost
oops-web-amqp-user = guest
oops-web-amqp-password = guest
oops-web-amqp-vhost = /
oops-web-amqp-exchange = oopses
oops-web-amqp-routing = 
oops-web-amqp-reporter = oops-tools-dev

[django]
recipe = djangorecipe
version = 1.3
project = oopstools
projectegg = oopstools
settings = settings
test = oopstools
eggs = oops-tools

[filetemplates]
recipe = z3c.recipe.filetemplate
eggs = oops-tools
extra-paths = ${scripts:extra-paths}
source-directory = buildout-templates

[docs]
recipe = z3c.recipe.sphinxdoc
eggs = oops-tools [docs]
index-doc = README.txt
default.css =
layout.html =

[scripts]
recipe = zc.recipe.egg
interpreter = py
eggs = oops-tools
       docutils
# XXX: djangorecipe doesn't install Django as part of the normal omelette.
extra-paths = ${buildout:directory}/parts/django
initialization = import os
                 os.environ['DJANGO_SETTINGS_MODULE'] = 'oopstools.settings'

[tags]
recipe = z3c.recipe.tag:tags
eggs = oops-tools