-
Notifications
You must be signed in to change notification settings - Fork 4
/
web.ini
80 lines (66 loc) · 1.66 KB
/
web.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
[DEFAULT]
sqlalchemy.url = postgresql://user:password@host:port/database
hashid.secret = 'mysecret' #TO CHANGE
celery.broker_url = redis://localhost:6379/0 #TO CHANGE IF YOU DON'T USE REDIS
screenshot.path = %(here)s/files # SET PATH WHERE YOU WANT TO CREATE THE SCREENSHOTS
storage.s3 = false
storage.local.base_path = %(here)s/storage
storage.local.base_url = /storage
# if you want to use s3 then you need set storage.s3 to true
#storage.s3.base_url = http://mybucket.s3.amazonaws.com/
#storage.s3.bucket_name = mybucket
#storage.s3.access_key = key
#storage.s3.secret_key = secret
suma.tasks =
html
text
screenshot
title
[app:main]
use = egg:suma#web
[alembic]
script_location = suma:core/migrations
[uwsgi]
paste = config:%p
paste-logger = %p
virtualenv = /path/to/virtualenv
http = :8080
###
# logging configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###
[loggers]
keys = root, suma, sqlalchemy, alembic, exc_logger
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_suma]
level = DEBUG
handlers =
qualname = suma
[logger_exc_logger]
level = ERROR
handlers = console
qualname = exc_logger
[logger_sqlalchemy]
level = WARN
handlers =
qualname = sqlalchemy.engine
# "level = INFO" logs SQL queries.
# "level = DEBUG" logs SQL queries and results.
# "level = WARN" logs neither. (Recommended for production systems.)
[logger_alembic]
level = INFO
handlers =
qualname = alembic
[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