Merge branch 'main' into jupyterlab-subdomain

pull/316/head
framctr 9 months ago committed by GitHub
commit 69cb0d0204
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -41,11 +41,8 @@ variable "share" {
variable "subdomain" { variable "subdomain" {
type = bool type = bool
description = "Determines whether JupyterLab will be accessed via it's own subdomain or whether it will be accessed via a path on Coder."
default = true default = true
validation {
condition = var.share == "owner" || var.share == "authenticated" || var.share == "public"
error_message = "Incorrect value. Please set either 'owner', 'authenticated', or 'public'."
}
} }
variable "order" { variable "order" {
@ -84,4 +81,3 @@ resource "coder_app" "jupyterlab" {
threshold = 10 threshold = 10
} }
} }
}

@ -1,5 +1,10 @@
#!/usr/bin/env sh #!/usr/bin/env sh
if [ -n "$BASE_URL" ]
then
BASE_URL="--ServerApp.base_url=${BASE_URL}"
fi
BOLD='\033[0;1m' BOLD='\033[0;1m'
printf "$${BOLD}Installing jupyterlab!\n" printf "$${BOLD}Installing jupyterlab!\n"
@ -15,11 +20,17 @@ if ! command -v jupyterlab > /dev/null 2>&1; then
fi fi
# install jupyterlab # install jupyterlab
pipx install -q jupyterlab pipx install -q jupyterlab
echo "🥳 jupyterlab has been installed\n\n" printf "%s\n\n" "🥳 jupyterlab has been installed"
else else
echo "🥳 jupyterlab is already installed\n\n" printf "%s\n\n" "🥳 jupyterlab is already installed"
fi fi
echo "👷 Starting jupyterlab in background..." echo "👷 Starting jupyterlab in background..."
echo "check logs at ${LOG_PATH}" echo "check logs at ${LOG_PATH}"
$HOME/.local/bin/jupyter-lab --ServerApp.ip='0.0.0.0' --ServerApp.port=${PORT} --no-browser --ServerApp.token='' --ServerApp.password='' > ${LOG_PATH} 2>&1 & $HOME/.local/bin/jupyter-lab --no-browser \
"$BASE_URL" \
--ServerApp.ip='*' \
--ServerApp.port="${PORT}" \
--ServerApp.token='' \
--ServerApp.password='' \
> "${LOG_PATH}" 2>&1 &
Loading…
Cancel
Save