Spaces:
Runtime error
Runtime error
File size: 276 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#!/bin/bash
set -eo pipefail
set -x
URI_ROOT_PATH=
export URI_ROOT_PATH
if [ x"$JUPYTERHUB_SERVICE_PREFIX" != x"" ]; then
URI_ROOT_PATH=${JUPYTERHUB_SERVICE_PREFIX%/}
fi
cd /opt/app-root/gateway
source scl_source enable rh-nodejs10
exec npm start
|