30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
|
# Runtime configuration of CKAN enabled through ckanext-envvars
|
||
|
# Information about how it works: https://github.com/okfn/ckanext-envvars
|
||
|
# Note that variables here take presedence over build/up time variables in .env
|
||
|
|
||
|
# General Settings
|
||
|
CKAN_SITE_ID=default
|
||
|
CKAN_SITE_URL=http://localhost:5000
|
||
|
CKAN_PORT=5000
|
||
|
CKAN_MAX_UPLOAD_SIZE_MB=10
|
||
|
# CKAN Plugins
|
||
|
CKAN__PLUGINS=envvars image_view text_view recline_view datastore datapusher harvest ckan_harvester
|
||
|
# CKAN requires storage path to be set in order for filestore to be enabled
|
||
|
CKAN__STORAGE_PATH=/srv/app/data
|
||
|
CKAN__WEBASSETS__PATH=/srv/app/data/webassets
|
||
|
# SYSADMIN settings, a sysadmin user is created automatically with the below credentials
|
||
|
CKAN_SYSADMIN_NAME=sysadmin
|
||
|
CKAN_SYSADMIN_PASSWORD=password
|
||
|
CKAN_SYSADMIN_EMAIL=sysadmin@ckantest.com
|
||
|
|
||
|
# Email settings
|
||
|
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
|
||
|
|
||
|
# Harvest settings
|
||
|
CKAN__HARVEST__MQ__TYPE=redis
|
||
|
CKAN__HARVEST__MQ__HOSTNAME=redis
|