development.ini 4.08 KB
Newer Older
Jonny Lamb's avatar
Jonny Lamb committed
1
2
3
4
5
6
7
8
9
#
# debexpo - Pylons development environment configuration
#
# The %(here)s variable will be replaced with the parent directory of this file
#
[DEFAULT]
debug = true
# Uncomment and replace with the address which should receive any error reports
#email_to = you@yourdomain.com
10
smtp_server = localhost
11
12
smtp_username =
smtp_password =
Jonny Lamb's avatar
Jonny Lamb committed
13
14
15
16
17
18
19
20
21
22
23
24
25
error_email_from = paste@localhost

[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 5000

[app:main]
use = egg:debexpo
full_stack = true
cache_dir = %(here)s/data
beaker.session.key = debexpo
beaker.session.secret = somesecret
26
sqlalchemy.url = sqlite:///%(here)s/debexpo.db
Jonny Lamb's avatar
Jonny Lamb committed
27
28
29
30
31
32
33
34
35
36
37
38

# If you'd like to fine-tune the individual locations of the cache data dirs
# for the Cache data, or the Session saves, un-comment the desired settings
# here:
#beaker.cache.data_dir = %(here)s/data/cache
#beaker.session.data_dir = %(here)s/data/sessions

# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
# execute malicious code after an exception is raised.
#set debug = false

Jonny Lamb's avatar
Jonny Lamb committed
39
40
# Directory name to add incoming uploaded files into
debexpo.upload.incoming = /tmp/debexpo/
Jonny Lamb's avatar
Jonny Lamb committed
41

42
43
44
# Directory name to store accepted uploaded files
debexpo.repository = /tmp/debexpo/files/

45
# Path to importer script
46
debexpo.importer = %(here)s/bin/debexpo-importer
47

48
49
50
# Whether to let debexpo handle the /debian/ directory
debexpo.handle_debian = true

51
52
53
# Site title (e.g. short name)
debexpo.sitetitle = Mentors

54
55
56
# Site name
debexpo.sitename = mentors.debian.net

57
58
59
# Site tagline
debexpo.tagline = Helps you get your packages into Debian

60
# Site logo
61
debexpo.logo = /debexpo-logo.png
62

63
64
65
# Site support email
debexpo.email = support@mentors.debian.net

66
67
68
# Whether to show Debian-specific options
debexpo.debian_specific = true

69
# What post-upload plugins to run, in this order
70
debexpo.plugins.post_upload = getorigtarball notuploader
71

Jonny Lamb's avatar
Jonny Lamb committed
72
# What qa plugins to run, in this order
73
debexpo.plugins.qa = lintian native maintaineremail watchfile closedbugs controlfields diffclean buildsystem debianqa distribution
Jonny Lamb's avatar
Jonny Lamb committed
74

75
# What plugins to run when the package is uploaded to Debian, in this order
76
debexpo.plugins.post_upload_to_debian = removepackage
77

78
# What plugins to run when a package is successfully uploaded, in this order
Jonny Lamb's avatar
Jonny Lamb committed
79
debexpo.plugins.post_successful_upload = changeslist
80

81
82
83
# Extra plugin directory
debexpo.plugindir = /tmp

84
85
86
# Location of the nearest Debian mirror
debexpo.debian_mirror = http://ftp.uk.debian.org/debian

87
# Email address to send package accepts to
88
debexpo.changes_list = changes@example.com
89

90
91
92
# Server debexpo is being run on including http:// and excluding trailing slash
debexpo.server = http://localhost:5000

93
94
95
# Path to the gpg binary
debexpo.gpg_path = /usr/bin/gpg

96
97
98
# Path to the mentors keyring
debexpo.gpg_keyring = 

99
# Cronjobs to run by the Worker task
100
debexpo.cronjobs = importcomments importuploads
101
102
103
104

# Extra plugin directory
debexpo.cronjobdir = /tmp

105
106
107
108
# Debexpo cronjob Worker iteration delay.
# The worker will sleep that amount of seconds after each run
debexpo.cronjob_delay = 60

109
110
# NNTP server to connect to fetch mailing list comments/changes
debexpo.nntp_server = news.gmane.org
111

112
113
114
115
116
117
118
119
# DEBEXPO
# The folling configuration settings allow you to customize the looks
# of your web site. You can either comment it out or specify a path
# to a file contaning HTML for the respective page. The path is supposed
# to be either absolute in your file system or relative to the location
# of this INI file.
#
# Additional HTML on the starting page. Use it for your own introduction.
Arno Töll's avatar
Arno Töll committed
120
# debexpo.html.frontpage = html/frontpage.html
121
122
#
# Additional HTML on the maintainer's introduction page
Arno Töll's avatar
Arno Töll committed
123
# debexpo.html.maintainer_intro = html/frontpage.html
124

Jonny Lamb's avatar
Jonny Lamb committed
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# Logging configuration
[loggers]
keys = root, debexpo

[handlers]
keys = console

[formatters]
keys = generic

[logger_root]
level = INFO
handlers = console

[logger_debexpo]
level = DEBUG
handlers =
qualname = debexpo

[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic

[formatter_generic]
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S