-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.ini
77 lines (61 loc) · 1.89 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
67
68
69
70
71
72
73
74
75
76
77
[DEFAULT]
debug = false
smtp_server = localhost
error_email_from = paste@localhost
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 5000
[app:main]
# Config for GitHub testing
use = config:../ckan/test-core.ini
solr_url = http://solr:8983/solr/ckan
sqlalchemy.url = postgresql://ckan_default:pass@postgres/ckan_test
ckan.redis.url = redis://redis:6379/1
# Config for local testing (uncomment to use, but don't commit)
# use = config:/usr/lib/ckan/venv/src/ckan/test-core.ini
# solr_url = http://solr:8983/solr
# sqlalchemy.url = postgresql://ckan:ckan@db/ckan_test
# ckan.redis.url = redis://redis:6379/1
ckan.plugins = harvest ckan_harvester geocat_harvester ogdch ogdch_pkg scheming_datasets fluent
# Needed for the harvest tests
ckan.legacy_templates = no
ckan.storage_path = storage
ckan.activity_streams_enabled = false
ckan.harvest.mq.type = redis
# Geocat harvester setting for dataset permalinks
ckanext.geocat.permalink_url = https://www.geocat.ch/geonetwork/srv/ger/md.viewer#/full_view/
ckanext.geocat.permalink_title = geocat.ch Permalink
# ckanext-scheming
scheming.dataset_schemas = ckanext.switzerland:dcat-ap-switzerland_scheming.json
scheming.presets = ckanext.scheming:presets.json
ckanext.fluent:presets.json
ckanext.switzerland:presets.json
scheming.dataset_fallback = false
# ckanext-switzerland-ng
ckanext.switzerland.send_email_on_user_registration = false
# Logging configuration
[loggers]
keys = root, ckan, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_ckan]
qualname = ckan
handlers =
level = INFO
[logger_sqlalchemy]
handlers =
qualname = sqlalchemy.engine
level = WARN
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(funcName)s %(lineno)d %(message)s