This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
test.ini
98 lines (76 loc) · 2.11 KB
/
test.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 8080
[app:main]
use = egg:WebCore
debug = True
web.root = brave.core.controller:RootController
web.cache = True
web.cache.data_dir = /tmp
web.cache.regions = general, texting
web.cache.general.expire = 86400
web.cache.texting.expire = 604800
web.sessions = True
web.sessions.data_dir = /tmp
web.sessions.lock_dir = /tmp
web.locale.i18n = True
web.locale.path = %(here)s/brave/core/locale
web.locale.fallback = en
web.auth = True
web.auth.name = user
web.auth.authenticate = brave.core.account.authentication:authenticate
web.auth.lookup = brave.core.account.authentication:lookup
web.auth.handler = /account/authenticate
web.static = True
web.static.path = %(here)s/brave/core/public
web.static.base = /
web.static.compiled = /_static
web.templating.engine = mako
db.connections = main
db.main.engine = mongoengine
db.main.model = brave.core.model
db.main.url = mongo://localhost/adam-test
# You need to manually create the maildir:
# mkdir -p mail/{cur,new,tmp}
mail.manager.use = immediate
mail.transport.use = maildir
mail.transport.directory = %(here)s/mail
mail.message.author = Brave Collective Core Services <alice+bccs@gothcandy.com>
mail.message.bcc = alice+bccs@gothcandy.com
mail.message.organization = Brave Collective
# Development key; don't fuck around with this.
# It's also different in production.
yubico.client = 11609
yubico.key = 8pK5mqdwTGdE6QF4X8qNgsY0IOU=
yubico.secure = True
# Clearly for testing purposes. Production differs.
api.endpoint = http://localhost:8080/api
api.identity = 5292f5de6f692bf7e20f9e57
api.key = fe3dc8bfb1745fb8a697fed5d6680143e9f22acac6bf3031c31ee737ff50e501
[loggers]
keys = root, core, webcore
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_core]
level = DEBUG
handlers = console
qualname = brave.core
propagate = 0
[logger_webcore]
level = INFO
handlers = console
qualname = web
propagate = 0
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s