├── .gitignore ├── .travis.yml ├── .vscode └── tasks.json ├── LICENSE ├── README.md ├── bin ├── _config ├── _dependencies ├── _deploy ├── _dev ├── _exec ├── _help ├── _install ├── _production ├── _repair ├── _uninstall └── easyckan ├── docs ├── EasyCKAN-logo.png └── easyckan_logo.7z ├── install_easyckan.sh └── src └── docker ├── 2.6 ├── ckan-cli │ ├── .bashrc │ ├── Dockerfile │ └── custom_cmd.sh ├── ckan-datapusher │ ├── Dockerfile │ └── datapusher.sh ├── ckan-dev │ ├── Dockerfile │ └── entrypoint.sh ├── ckan-postgres │ └── Dockerfile ├── ckan-production │ ├── Dockerfile │ ├── easyckan.conf │ ├── easyckan.wsgi │ └── entrypoint.sh ├── ckan-solr │ ├── Dockerfile │ └── ckan_configs │ │ ├── elevate.xml │ │ ├── schema.xml │ │ ├── solrconfig.xml │ │ └── synonyms.txt ├── ckan-supervisor │ ├── Dockerfile │ ├── apps │ │ ├── easyckan-healthcheck.sh │ │ ├── easyckan-panel.sh │ │ ├── easyckan-scheduler.sh │ │ └── easyckan.conf │ └── supervisord.conf ├── ckan │ ├── Dockerfile │ └── install.sh ├── debug.sh ├── travis-build.sh ├── travis-mocha.sh └── travis-test.sh └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Easy-CKAN.* 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/README.md -------------------------------------------------------------------------------- /bin/_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_config -------------------------------------------------------------------------------- /bin/_dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_dependencies -------------------------------------------------------------------------------- /bin/_deploy: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Not avaliable yet..." 4 | exit 5 | -------------------------------------------------------------------------------- /bin/_dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_dev -------------------------------------------------------------------------------- /bin/_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_exec -------------------------------------------------------------------------------- /bin/_help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_help -------------------------------------------------------------------------------- /bin/_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_install -------------------------------------------------------------------------------- /bin/_production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_production -------------------------------------------------------------------------------- /bin/_repair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_repair -------------------------------------------------------------------------------- /bin/_uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/_uninstall -------------------------------------------------------------------------------- /bin/easyckan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/bin/easyckan -------------------------------------------------------------------------------- /docs/EasyCKAN-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/docs/EasyCKAN-logo.png -------------------------------------------------------------------------------- /docs/easyckan_logo.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/docs/easyckan_logo.7z -------------------------------------------------------------------------------- /install_easyckan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/install_easyckan.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-cli/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-cli/.bashrc -------------------------------------------------------------------------------- /src/docker/2.6/ckan-cli/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-cli/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-cli/custom_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-cli/custom_cmd.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-datapusher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-datapusher/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-datapusher/datapusher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-datapusher/datapusher.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-dev/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-dev/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-dev/entrypoint.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-postgres/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-production/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-production/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-production/easyckan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-production/easyckan.conf -------------------------------------------------------------------------------- /src/docker/2.6/ckan-production/easyckan.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-production/easyckan.wsgi -------------------------------------------------------------------------------- /src/docker/2.6/ckan-production/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-production/entrypoint.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-solr/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-solr/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-solr/ckan_configs/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-solr/ckan_configs/elevate.xml -------------------------------------------------------------------------------- /src/docker/2.6/ckan-solr/ckan_configs/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-solr/ckan_configs/schema.xml -------------------------------------------------------------------------------- /src/docker/2.6/ckan-solr/ckan_configs/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-solr/ckan_configs/solrconfig.xml -------------------------------------------------------------------------------- /src/docker/2.6/ckan-solr/ckan_configs/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-solr/ckan_configs/synonyms.txt -------------------------------------------------------------------------------- /src/docker/2.6/ckan-supervisor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-supervisor/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan-supervisor/apps/easyckan-healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-supervisor/apps/easyckan-healthcheck.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-supervisor/apps/easyckan-panel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-supervisor/apps/easyckan-panel.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-supervisor/apps/easyckan-scheduler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-supervisor/apps/easyckan-scheduler.sh -------------------------------------------------------------------------------- /src/docker/2.6/ckan-supervisor/apps/easyckan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-supervisor/apps/easyckan.conf -------------------------------------------------------------------------------- /src/docker/2.6/ckan-supervisor/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan-supervisor/supervisord.conf -------------------------------------------------------------------------------- /src/docker/2.6/ckan/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan/Dockerfile -------------------------------------------------------------------------------- /src/docker/2.6/ckan/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/ckan/install.sh -------------------------------------------------------------------------------- /src/docker/2.6/debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/debug.sh -------------------------------------------------------------------------------- /src/docker/2.6/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/travis-build.sh -------------------------------------------------------------------------------- /src/docker/2.6/travis-mocha.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/travis-mocha.sh -------------------------------------------------------------------------------- /src/docker/2.6/travis-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thenets/easyckan/HEAD/src/docker/2.6/travis-test.sh -------------------------------------------------------------------------------- /src/docker/README.md: -------------------------------------------------------------------------------- 1 | Doc for EasyCKAN Docker version. --------------------------------------------------------------------------------