jupyter / start_server.sh
huph22's picture
update
723f8bc verified
raw
history blame contribute delete
794 Bytes
#!/bin/bash
JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}"
echo "Starting Jupyter Lab with token $JUPYTER_TOKEN"
NOTEBOOK_DIR="/data"
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 \
--ServerApp.iopub_data_rate_limit=1.0e10 \
--ServerApp.iopub_msg_rate_limit=1000000 \
--ServerApp.iopub_max_msg_size=1000000000 \
--ServerApp.rate_limit_window=10 \
--LabApp.news_url=None \
--LabApp.check_for_updates_class="jupyterlab.NeverCheckForUpdate" \
--notebook-dir=$NOTEBOOK_DIR