Skip to content

Instantly share code, notes, and snippets.

@antitoxic
Created January 16, 2016 16:08
Show Gist options
  • Save antitoxic/af38c0ba937ac47eca18 to your computer and use it in GitHub Desktop.
Save antitoxic/af38c0ba937ac47eca18 to your computer and use it in GitHub Desktop.
!/usr/bin/env bash
CKAN_CONFIG_FILENAME="production.ini"
CKAN_CONFIG_DIR=/var/www/ckan/config
VIRTUALENV_DIR=/var/www/ckan/virtualenv
UPLOADS_DIR=/var/www/ckan/data
OWNER_USER=www-data
OWNER_GROUP=www-data
MAX_RESOURCE_SIZE_IN_MEGABYTES=200
CKAN_INSTANCE_NAME=opendatabulgaria # only latin lowercase + underscores allowed
CKAN_DOMAIN=local.opendata.bg
CKAN_URL=http://local.opendata.bg
CKAN_TITLE="Open data portal"
LOCALE=bg
LOCALES_ORDER="bg en"
FAVICON_RELATIVE_URL=/favicon.ico
CKAN_REPO_TAG=https://github.com/governmentbg/ckan.git@master
CKAN_THEME_NAME=bulgarian_theme
CKAN_THEME_REPO_TAG=https://github.com/governmentbg/ckan-bulgarian-theme.git@master
POSTGRES_NEW_USER=ckan_default
POSTGRES_NEW_READONLY_USER=datastore_default
POSTGRES_PASS=samplepassword
POSTGRES_DBNAME=ckan_default
POSTGRES_DATASTORE_DBNAME=datastore_default
SOLR_SETUP=auto
SOLR_PORT=8983
SOLR_URL=http://127.0.0.1:8983/solr
DATAPUSHER_REPO_TAG=https://github.com/governmentbg/ckan-datapusher.git@master
DATAPUSHER_URL=http://0.0.0.0:8800/
# Not implemented. Should we have separate venv for datapusher at all?
#VIRTUALENV_DATAPUSHER_DIR=/usr/lib/ckan/default
EMAIL_TO=opendata@obshtestvo.bg
SMTP_MAIL_FROM=opendata@obshtestvo.bg
ERROR_EMAIL_FROM=opendata@obshtestvo.bg
SMTP_HOST=localhost
SMTP_TLS=True
SMTP_USER=samplesmtpuser
SMTP_PASS=samplesmtppass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment