Skip to content

Instantly share code, notes, and snippets.

@hkwi
Created January 10, 2024 07:29
Show Gist options
  • Save hkwi/df5f16e1f7af4ca4c9f6ea3e27bf0804 to your computer and use it in GitHub Desktop.
Save hkwi/df5f16e1f7af4ca4c9f6ea3e27bf0804 to your computer and use it in GitHub Desktop.
ckan debug setup
[app:main]
ckan.site_url=http://localhost
SECRET_KEY=secret
sqlalchemy.url=postgresql://ckan:test@localhost/ckan
solr_url=http://localhost:8983
[formatters]
keys=
[handlers]
keys=
[loggers]
keys=root
[logger_root]
handlers=
version: "3"
services:
db:
image: postgres
ports:
- "5432:5432"
environment:
- POSTGRES_USER=ckan
- POSTGRES_PASSWORD-test
- POSTGRES_DB=ckan
solr:
image: solr
ports:
- "8983:8983"
redis:
image: redis
ports:
- "6379:6379"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment