jupyterlab-test2 / start_server.sh
nateraw's picture
Update start_server.sh
01a9752
raw
history blame contribute delete
772 Bytes
#!/bin/bash
JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}"
if [[ ! -f data.csv ]] || [[ ! -f dataset_config.json ]]; then
python app.py
else
nohup bash ./main.sh &
export TF_CPP_MIN_LOG_LEVEL="2"
tensorboard --logdir=logs/44k --host 0.0.0.0 --port 7860
fi
# echo "Jupyter Lab token $JUPYTER_TOKEN"
# 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"