-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.env.tmpl
More file actions
executable file
·57 lines (45 loc) · 1.62 KB
/
.env.tmpl
File metadata and controls
executable file
·57 lines (45 loc) · 1.62 KB
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
# For Paster commands
CKAN_INI=/ckan.ini
# Startup config
# https://github.com/okfn/ckanext-envvars/issues/1#issuecomment-143709003
CKAN_SQLALCHEMY_URL=postgres://ckan_default:pass@db/ckan_default
CKAN_SITE_URL=http://localhost:5000
CKAN_SOLR_URL=http://solr:8983/solr/ckan
# Basic config
CKAN___BEAKER__SESSION__SECRET=
CKAN___APP_INSTANCE_UUID=
# Database config
CKAN_DATASTORE_WRITE_URL=postgres://ckan_default:pass@db/datastore_default
CKAN_DATASTORE_READ_URL=postgres://datastore_default:pass@db/datastore_default
CKAN_REDIS_URL=redis://redis:6379/0
# Local storage config
CKAN__STORAGE_PATH=/var/lib/ckan
# S3 config
CKANEXT__S3FILESTORE__AWS_ACCESS_KEY_ID=
CKANEXT__S3FILESTORE__AWS_SECRET_ACCESS_KEY=
CKANEXT__S3FILESTORE__AWS_BUCKET_NAME=
CKANEXT__S3FILESTORE__HOST_NAME=https://s3-eu-west-1.amazonaws.com
CKANEXT__S3FILESTORE__REGION_NAME=eu-west
CKANEXT__S3FILESTORE__SIGNATURE_VERSION=s3v4
CKANEXT__S3FILESTORE__AWS_STORAGE_PATH=dev
# Datastore config
CKAN__DATASTORE__WRITE_URL=postgresql://ckan_default:pass@db/datastore_default
CKAN__DATASTORE__READ_URL=postgresql://datastore_default:pass@db/datastore_default
# Sentry config
CKAN_SENTRY_DSN=
# reCAPTCHA
CKAN_RECAPTCHA_PUBLIC_KEY=""
CKAN_RECAPTCHA_PRIVATE_KEY=""
# request timeout in X seconds
CKAN_REQUESTS_TIMEOUT=30
CKAN_RESOURCE_PROXY_TIMEOUT=30
# Solr
CKAN_SOLR_VERSION=2.11-solr9.8
CKAN_SOLR_URL=http://solr:8983/solr/ckan
TEST_CKAN_SOLR_URL=http://solr:8983/solr/ckan
# Datapusher
DATAPUSHER_VERSION=0.0.21
CKAN_DATAPUSHER_URL=http://datapusher:8800
CKAN__DATAPUSHER__CALLBACK_URL_BASE=http://ckan:5000
DATAPUSHER_REWRITE_RESOURCES=True
DATAPUSHER_REWRITE_URL=http://ckan:5000