Created
January 10, 2024 07:29
-
-
Save hkwi/df5f16e1f7af4ca4c9f6ea3e27bf0804 to your computer and use it in GitHub Desktop.
ckan debug setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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