remove .env file
This commit is contained in:
parent
1928074f01
commit
aed99166ce
82
.env
82
.env
|
@ -1,82 +0,0 @@
|
||||||
# Container names
|
|
||||||
NGINX_CONTAINER_NAME=nginx
|
|
||||||
REDIS_CONTAINER_NAME=redis
|
|
||||||
POSTGRESQL_CONTAINER_NAME=db
|
|
||||||
SOLR_CONTAINER_NAME=solr
|
|
||||||
DATAPUSHER_CONTAINER_NAME=datapusher
|
|
||||||
CKAN_CONTAINER_NAME=ckan
|
|
||||||
WORKER_CONTAINER_NAME=ckan-worker
|
|
||||||
|
|
||||||
# Host Ports
|
|
||||||
CKAN_PORT_HOST=5000
|
|
||||||
NGINX_PORT_HOST=81
|
|
||||||
NGINX_SSLPORT_HOST=8443
|
|
||||||
|
|
||||||
# CKAN databases
|
|
||||||
POSTGRES_USER=postgres
|
|
||||||
POSTGRES_PASSWORD=postgres
|
|
||||||
POSTGRES_DB=postgres
|
|
||||||
POSTGRES_HOST=db
|
|
||||||
CKAN_DB_USER=ckandbuser
|
|
||||||
CKAN_DB_PASSWORD=ckandbpassword
|
|
||||||
CKAN_DB=ckandb
|
|
||||||
DATASTORE_READONLY_USER=datastore_ro
|
|
||||||
DATASTORE_READONLY_PASSWORD=datastore
|
|
||||||
DATASTORE_DB=datastore
|
|
||||||
CKAN_SQLALCHEMY_URL=postgresql://ckandbuser:ckandbpassword@db/ckandb
|
|
||||||
CKAN_DATASTORE_WRITE_URL=postgresql://ckandbuser:ckandbpassword@db/datastore
|
|
||||||
CKAN_DATASTORE_READ_URL=postgresql://datastore_ro:datastore@db/datastore
|
|
||||||
|
|
||||||
# Test database connections
|
|
||||||
TEST_CKAN_SQLALCHEMY_URL=postgres://ckan:ckan@db/ckan_test
|
|
||||||
TEST_CKAN_DATASTORE_WRITE_URL=postgresql://ckan:ckan@db/datastore_test
|
|
||||||
TEST_CKAN_DATASTORE_READ_URL=postgresql://datastore_ro:datastore@db/datastore_test
|
|
||||||
|
|
||||||
# CKAN core
|
|
||||||
CKAN_VERSION=2.10.0
|
|
||||||
CKAN_SITE_ID=default
|
|
||||||
CKAN_SITE_URL=https://localhost:8443
|
|
||||||
CKAN_PORT=5000
|
|
||||||
CKAN_PORT_HOST=5000
|
|
||||||
CKAN___BEAKER__SESSION__SECRET=CHANGE_ME
|
|
||||||
# See https://docs.ckan.org/en/latest/maintaining/configuration.html#api-token-settings
|
|
||||||
CKAN___API_TOKEN__JWT__ENCODE__SECRET=string:CHANGE_ME
|
|
||||||
CKAN___API_TOKEN__JWT__DECODE__SECRET=string:CHANGE_ME
|
|
||||||
CKAN_SYSADMIN_NAME=ckan_admin
|
|
||||||
CKAN_SYSADMIN_PASSWORD=test1234
|
|
||||||
CKAN_SYSADMIN_EMAIL=your_email@example.com
|
|
||||||
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
|
|
||||||
TZ=UTC
|
|
||||||
|
|
||||||
# Solr
|
|
||||||
SOLR_IMAGE_VERSION=2.10-solr9
|
|
||||||
CKAN_SOLR_URL=http://solr:8983/solr/ckan
|
|
||||||
TEST_CKAN_SOLR_URL=http://solr:8983/solr/ckan
|
|
||||||
|
|
||||||
# Redis
|
|
||||||
REDIS_VERSION=6
|
|
||||||
CKAN_REDIS_URL=redis://redis:6379/1
|
|
||||||
TEST_CKAN_REDIS_URL=redis://redis:6379/1
|
|
||||||
|
|
||||||
# Datapusher
|
|
||||||
DATAPUSHER_VERSION=0.0.20
|
|
||||||
CKAN_DATAPUSHER_URL=http://datapusher:8800
|
|
||||||
CKAN__DATAPUSHER__CALLBACK_URL_BASE=http://ckan:5000
|
|
||||||
DATAPUSHER_REWRITE_RESOURCES=True
|
|
||||||
DATAPUSHER_REWRITE_URL=http://ckan:5000
|
|
||||||
|
|
||||||
# NGINX
|
|
||||||
NGINX_PORT=80
|
|
||||||
NGINX_SSLPORT=443
|
|
||||||
|
|
||||||
# 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
|
|
Loading…
Reference in New Issue