Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d152fb5 commit 329f9ebCopy full SHA for 329f9eb
jupyterlab/run.sh
@@ -1,8 +1,7 @@
1
#!/usr/bin/env sh
2
3
-if [ -n "${BASE_URL}" ]
4
-then
5
- BASE_URL="--ServerApp.base_url=${BASE_URL}"
+if [ -n "${BASE_URL}" ]; then
+ BASE_URL="--ServerApp.base_url=${BASE_URL}"
6
fi
7
8
BOLD='\033[0;1m'
@@ -28,9 +27,9 @@ fi
28
27
printf "👷 Starting jupyterlab in background..."
29
printf "check logs at ${LOG_PATH}"
30
$HOME/.local/bin/jupyter-lab --no-browser \
31
- "$BASE_URL" \
32
- --ServerApp.ip='*' \
33
- --ServerApp.port="${PORT}" \
34
- --ServerApp.token='' \
35
- --ServerApp.password='' \
36
- > "${LOG_PATH}" 2>&1 &
+ "$BASE_URL" \
+ --ServerApp.ip='*' \
+ --ServerApp.port="${PORT}" \
+ --ServerApp.token='' \
+ --ServerApp.password='' \
+ > "${LOG_PATH}" 2>&1 &
0 commit comments