forked from fraunhoferfokus/ckanext-govdatade
-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.ini
66 lines (52 loc) · 1.57 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
[app:main]
use = config:../ckan/test-core.ini
ckan.legacy_templates = no
ckan.site_url = http://localhost
## Validierungs Reports
ckanext.govdata.validators.report.dir = /var/lib/ckan/static/reports/
ckanext.govdata.validators.report.portal.url = https://www.govdata.de
ckanext.govdata.validators.report.detail.url = %(ckanext.govdata.validators.report.portal.url)s/daten/-/details
## Redis configuration
ckanext.govdata.validators.redis.host = localhost
ckanext.govdata.validators.redis.port = 6379
ckanext.govdata.validators.redis.database = 1
## CKAN API base URL with trailing slash
ckanext.govdata.harvester.ckan.api.base.url = http://localhost:80/
## Delete deprecated packages settings
ckanext.govdata.delete_deprecated_packages.logfile = /var/log/ckan/auto_delete_deprecated_packages.csv
[loggers]
keys = root, ckan, ckanext, ckanext.govdatade.commands.linkchecker, ckanext.govdatade.util
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARNING
handlers = console
[logger_ckan]
level = INFO
handlers = console
qualname = ckan
propagate = 0
[logger_ckanext]
level = DEBUG
handlers = console
qualname = ckanext
propagate = 0
[logger_ckanext.govdatade.commands.linkchecker]
level = DEBUG
handlers = console
qualname = ckanext.govdatade.commands.linkchecker
propagate = 0
[logger_ckanext.govdatade.util]
level = DEBUG
handlers = console
qualname = ckanext.govdatade.util
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