-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.ini
executable file
·84 lines (66 loc) · 2.22 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
78
79
80
81
82
83
84
[DEFAULT]
debug = false
smtp_server = localhost
error_email_from = paste@localhost
smtp.mail_from = ckan@localhost
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 5000
[app:main]
# Values used for local testing
use = config:/usr/lib/ckan/venv/src/ckan/test-core.ini
solr_url = http://solr:8983/solr/ckan
sqlalchemy.url = postgresql://ckan:ckan@db/ckan_test
ckan.redis.url = redis://redis:6379/1
ckan.plugins = ogdch ogdch_pkg ogdch_res ogdch_group ogdch_org ogdch_showcase ogdch_subscribe ogdch_middleware ogdch_dcat scheming_datasets scheming_groups scheming_organizations fluent hierarchy_display harvester_dashboard
scheming.dataset_schemas = ckanext.switzerland:dcat-ap-switzerland_scheming.json
scheming.group_schemas = ckanext.switzerland:multilingual_group_scheming.json
scheming.organization_schemas = ckanext.switzerland:multilingual_organization_scheming.json
scheming.presets = ckanext.scheming:presets.json
ckanext.fluent:presets.json
ckanext.switzerland:presets.json
scheming.dataset_fallback = false
# Frontend settings
ckan.site_title = opendata.swiss
# ckanext-switzerland
ckanext.switzerland.date_picker_format = %d.%m.%Y
ckanext.switzerland.send_email_on_user_registration = false
ckanext.switzerland.frontend_url = http://frontend-test.ckan.net
ckanext.switzerland.showcase_admin_email = localhost-admin1@ogdch.test
ckanext.switzerland.showcase_admin_name = OGD Office
ckanext.switzerland.api_limit_calls_per_interval = 2
ckanext.switzerland.api_limit_interval_in_seconds = 300
# ckanext-dcat
ckanext.dcat.rdf.profiles = swiss_dcat_ap
# ckanext-subscribe
ckanext.subscribe.apply_recaptcha = false
ckan.legacy_templates = no
ckan.storage_path = storage
ckan.activity_streams_enabled = true
ckan.harvest.mq.type = redis
# 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] %(message)s