This repository was archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.ini
More file actions
85 lines (66 loc) · 1.61 KB
/
test.ini
File metadata and controls
85 lines (66 loc) · 1.61 KB
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
###
# The Experiment Support System Configuration
###
[app:main]
# Database URL
sqlalchemy.url = sqlite:///:memory:
# Secure session secret
pwh.pyramid_session.secret = 5c20f9b637b1d0b103d05fe40fbcc47c039a19d19e1d0b134f309ee5f22d94e4
# Email configuration
app.email.smtp_host =
app.email.ssl =
app.email.username =
app.email.password =
app.email.sender =
# Test configuration
app.testing = true
# Pyramid internal configuration
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
pyramid.includes =
# By default, the toolbar only appears for clients from IP addresses
# '127.0.0.1' and '::1'.
# debugtoolbar.hosts = 127.0.0.1 ::1
# DO NOT CHANGE
use = egg:ess
###
# WSGI server configuration
###
[server:main]
use = egg:waitress#main
listen = localhost:6543
threads = 1
###
# Logging configuration
# https://docs.pylonsproject.org/projects/pyramid/en/1.10-branch/narr/logging.html
###
[loggers]
keys = root, toja, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = ERROR
handlers = console
[logger_toja]
level = ERROR
handlers =
qualname = toja
[logger_sqlalchemy]
level = ERROR
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:%(lineno)s][%(threadName)s] %(message)s