mirror of
https://github.com/saymrwulf/NTT-learning.git
synced 2026-05-14 20:47:53 +00:00
45 lines
979 B
Bash
45 lines
979 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
source "$SCRIPT_DIR/common.sh"
|
||
|
|
|
||
|
|
require_venv
|
||
|
|
ensure_runtime_dirs
|
||
|
|
|
||
|
|
if ! jupyter_installed; then
|
||
|
|
echo "jupyterlab is not installed in .venv. Run scripts/bootstrap.sh first."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
if is_running; then
|
||
|
|
echo "JupyterLab is already running with pid $(<"$PID_FILE")."
|
||
|
|
exit 0
|
||
|
|
fi
|
||
|
|
|
||
|
|
PORT="${PORT:-8888}"
|
||
|
|
|
||
|
|
nohup env \
|
||
|
|
JUPYTER_CONFIG_DIR="$REPO_ROOT/.jupyter_config" \
|
||
|
|
JUPYTER_DATA_DIR="$REPO_ROOT/.jupyter_data" \
|
||
|
|
JUPYTER_RUNTIME_DIR="$REPO_ROOT/.jupyter_runtime" \
|
||
|
|
IPYTHONDIR="$REPO_ROOT/.ipython" \
|
||
|
|
MPLCONFIGDIR="$REPO_ROOT/.cache/matplotlib" \
|
||
|
|
"$VENV_PY" -m jupyter lab \
|
||
|
|
--no-browser \
|
||
|
|
--ip=127.0.0.1 \
|
||
|
|
--port="$PORT" \
|
||
|
|
--ServerApp.root_dir="$REPO_ROOT" \
|
||
|
|
>"$LOG_FILE" 2>&1 &
|
||
|
|
|
||
|
|
echo $! > "$PID_FILE"
|
||
|
|
sleep 1
|
||
|
|
|
||
|
|
if ! is_running; then
|
||
|
|
echo "JupyterLab failed to start. Check $LOG_FILE."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "JupyterLab started at http://127.0.0.1:$PORT/lab"
|
||
|
|
|