This repository has been archived by the owner on Jul 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
development.ini
78 lines (59 loc) · 2.01 KB
/
development.ini
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
[app:main]
use = egg:FedoraSummerOfHardware
pyramid.reload_templates = true
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
pyramid_debugtoolbar
sqlalchemy.url = sqlite:///%(here)s/FedoraSummerOfHardware.db
accept_applications = False
start_date = 2012-07-25
stop_date = 2012-08-16
admin_usernames = lmacken spot duffy
admin_email = [email protected]
email_from = [email protected]
email_subject = Your Fedora Summer of Open Hardware 2012 Application
email_body = Congratulations, your Fedora Summer of Open Hardware application has been tentatively accepted. Please go to the following URL and enter your mailing address so we can send you your hardware: %sAs long as your mailing address isn't outside of the list of regions eligible for this drawing (%s), you should be receiving your hardware within the next %s weeks. We'll let you know if any issues crop up with your application when we do a final check on it.
est_shipping = 6-10
exclude_states = NY FL
prohibited_users = redhat.com
hardware = raspberrypi arduino olpc
num_raspberrypi = 150
num_olpc = 50
num_arduino = 20
authtkt.secret = CHANGEMEINPRODUCTION!!!1
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, fedorasummerofhardware, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_fedorasummerofhardware]
level = DEBUG
handlers =
qualname = fedorasummerofhardware
[logger_sqlalchemy]
level = INFO
handlers =
qualname = sqlalchemy.engine
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARN" logs neither. (Recommended for production systems.)
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
# End logging configuration