workhorse / start_server.sh
Dan
fix start_server
b13e784
raw
history blame contribute delete
760 Bytes
#!/bin/bash
JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}"
NOTEBOOK_DIR="/data"
# jupyter labextension disable "@jupyterlab/apputils-extension:announcements"
echo "Starting Jupyter Lab server..."
echo "connect to http://127.0.0.1:7860/lab?token=huggingface"
uv run --with jupyter jupyter lab \
--ip 0.0.0.0 \
--port 7860 \
--no-browser \
--allow-root \
--ServerApp.token="$JUPYTER_TOKEN" \
--ServerApp.tornado_settings="{'headers': {'Content-Security-Policy': 'frame-ancestors *'}}" \
--ServerApp.cookie_options="{'SameSite': 'None', 'Secure': True}" \
--ServerApp.disable_check_xsrf=True \
--LabApp.news_url=None \
--LabApp.check_for_updates_class="jupyterlab.NeverCheckForUpdate" \
--notebook-dir=$NOTEBOOK_DIR