We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d935a8b commit 9afc2faCopy full SHA for 9afc2fa
ckan/docker-entrypoint.d/02_setup_config.sh
@@ -11,13 +11,12 @@ if [[ $CKAN_PLUGINS == *"dsetsearch"* ]]; then
11
REPO_TOKEN=`cat /run/secrets/REPO_TOKEN`
12
fi
13
14
- # Show commands that are run
15
- set -x
16
-
17
### Install DASH Search custom plugin at runtime, to avoid baking in secrets
18
pip3 install -e "git+https://${REPO_TOKEN}@github.com/NCAR/ckanext-dsetsearch.git#egg=ckanext-dsetsearch" && \
19
pip3 install -r /srv/app/src/ckanext-dsetsearch/pip-requirements.txt
20
+ # Show commands that are run (don't show REPO_TOKEN)
+ set -x
21
22
ckan config-tool --edit ./ckan.ini ckan.auth.public_user_details=false
23
ckan config-tool --edit ./ckan.ini ckan.cors.origin_allow_all=true
0 commit comments