-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.ini.sample
More file actions
66 lines (51 loc) · 1.22 KB
/
development.ini.sample
File metadata and controls
66 lines (51 loc) · 1.22 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
[app:main]
use = egg:moodeque
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
# api config. Version is mandatory, base_url optional, defaults to 'api'
moodeque.api.version = v1
# moodeque.api.base_url = api
# REDIS connection (defaults to localhost:6379)
# redis.host = localhost
# redis.port = 6379
# or
# redis.unix_socket_path = /path/to/socket
# Stereomoood
stereomood.api_key =
stereomood.secret_key =
stereomood.username =
stereomood.password =
# must be writable by the webserver
moodeque.song_cache_path = %(here)s/data
moodeque.song_url = "songs"
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
# Begin logging configuration
[loggers]
keys = root, moodeque
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_moodeque]
level = DEBUG
handlers =
qualname = moodeque
[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