You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 14, 2024. It is now read-only.
-t NPM_TOKEN : A valid token to access the Applied Blockchain private npm repos. If omitted then the current token will be extracted from '$npmrcPath' and used.
Runs 'docker-compose$configArgs ARGS...'
" | fold -s
}
while getopts "ht:" opt; do
case $opt in
h)
show_usage
exit
;;
t)
npmToken="$OPTARG"
;;
\?)
show_usage
exit 2
;;
esac
done
shift $((OPTIND - 1))
if [[ -z $npmToken ]]; then
if [[ ! -f $npmrcPath ]]; then
echo "$npmPath file not found, so NPM_TOKEN argument required"