forked from invisibleroads/georegistry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.ini
62 lines (59 loc) · 1.35 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
#
# georegistry - Pylons development environment configuration
#
# The %(here)s variable will be replaced with the parent directory of this file
#
[DEFAULT]
debug = true
email_to = [email protected]
error_email_from = [email protected]
smtp_server = localhost
# smtp_username =
# smtp_password =
# smtp_use_tls = True
[server:main]
use = egg:Paste#http
host = 127.0.0.1
port = 5000
[app:main]
use = egg:georegistry
full_stack = true
static_files = true
cache_dir = %(here)s/data
beaker.session.key = georegistry
beaker.session.secret = somesecret
sqlalchemy.url = postgresql://georegistry:georegistry@localhost/georegistry
# recaptcha.public =
# recaptcha.private =
sms.email = [email protected]
sms.imap_server = localhost
# sms.imap_username =
# sms.imap_password =
[loggers]
keys = root, routes, georegistry, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_routes]
level = INFO
handlers =
qualname = routes.middleware
[logger_georegistry]
level = DEBUG
handlers =
qualname = georegistry
[logger_sqlalchemy]
level = INFO
handlers =
qualname = sqlalchemy.engine
[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