-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest.ini
103 lines (83 loc) · 2.19 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[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]
use = config:../ckan/test-core.ini
ckan.plugins =
activity
hierarchy
datavicmain_dataset datavicmain_home
datavic_iar_theme
scheming_datasets scheming_organizations
alias
files
oidc_pkce
flakes
mailcraft
pages
workflow
bulk
auth
ckanext.oidc_pkce.base_url = https://vcdi.oktapreview.com
ckanext.oidc_pkce.client_id = xxx
ckan.pages.show_blog_button = False
ckanext.files.storage.default.type = files:redis
scheming.dataset_schemas =
ckanext.datavicmain:iar_ckan_dataset.yaml
scheming.organization_schemas =
ckanext.datavicmain:organisation_schema.yaml
scheming.presets =
ckanext.scheming:presets.json
ckanext.datavicmain:iar_presets.json
ckanext.alias:presets.yaml
ckanext.dcat.enable_content_negotiation=True
# Needed for the harvest tests
ckan.activity_streams_enabled = false
ckan.harvest.mq.type = redis
## Authorization Settings
ckan.auth.public_user_details = false
ckan.auth.public_activity_stream_detail = false
ckan.auth.route_after_login =
ckan.auth.allow_dataset_collaborators = true
ckan.auth.create_user_via_web = true
ckan.pages.base_url = pages
smtp.server = 127.0.0.1:1025
smtp.starttls = false
smtp.user =
smtp.password =
smtp.mail_from = [email protected]
smtp.reply_to = [email protected]
# Logging configuration
[loggers]
keys = root, ckan, sqlalchemy, environment
[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
[logger_environment]
handlers =
qualname = ckan.config.environment
level = ERROR
[handler_console]
class = StreamHandler
args = (sys.stdout,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s