forked from okfn/docker-ckan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
48 lines (39 loc) · 1.42 KB
/
.env.example
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
# DB image settings
POSTGRES_PASSWORD=ckan
DATASTORE_READONLY_PASSWORD=datastore
# Basic
CKAN_SITE_ID=default
CKAN_SITE_URL=https://ckan:5000
CKAN_PORT=5000
CKAN_SYSADMIN_NAME=ckan_admin
CKAN_SYSADMIN_PASSWORD=test1234
TZ=UTC
# Database connections (TODO: avoid duplication)
CKAN_SQLALCHEMY_URL=postgresql:https://ckan:ckan@db/ckan
CKAN_DATASTORE_WRITE_URL=postgresql:https://ckan:ckan@db/datastore
CKAN_DATASTORE_READ_URL=postgresql:https://datastore_ro:datastore@db/datastore
# Test database connections
TEST_CKAN_SQLALCHEMY_URL=postgres:https://ckan:ckan@db/ckan_test
TEST_CKAN_DATASTORE_WRITE_URL=postgresql:https://ckan:ckan@db/datastore_test
TEST_CKAN_DATASTORE_READ_URL=postgresql:https://datastore_ro:datastore@db/datastore_test
# Other services connections
CKAN_SOLR_URL=https://solr:8983/solr/ckan
CKAN_REDIS_URL=redis:https://redis:6379/1
CKAN_DATAPUSHER_URL=https://datapusher:8800
CKAN__DATAPUSHER__CALLBACK_URL_BASE=https://ckan:5000
TEST_CKAN_SOLR_URL=https://solr:8983/solr/ckan
TEST_CKAN_REDIS_URL=redis:https://redis:6379/1
# Core settings
CKAN__STORAGE_PATH=/var/lib/ckan
CKAN_SMTP_SERVER=smtp.corporateict.domain:25
CKAN_SMTP_STARTTLS=True
CKAN_SMTP_USER=user
CKAN_SMTP_PASSWORD=pass
CKAN_SMTP_MAIL_FROM=ckan@localhost
# Extensions
CKAN__PLUGINS="envvars image_view text_view recline_view datastore datapusher"
CKAN__HARVEST__MQ__TYPE=redis
CKAN__HARVEST__MQ__HOSTNAME=redis
CKAN__HARVEST__MQ__PORT=6379
CKAN__HARVEST__MQ__REDIS_DB=1