#!/bin/bash # code --install-extension ms-toolsai.jupyter ms-toolsai.jupyter # https://az764295.vo.msecnd.net/insider/35419fc016b8d3d5dbc59aa11a0be957b0897309/code-insiders_1.84.0-1698404571_amd64.deb # https://code.visualstudio.com/sha/download?build=stable&os=cli-alpine-x64 JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}" echo "Starting Jupyter Lab with 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" \ --NotebookApp.allow_origin='*' --ServerApp.password='password123' & \ disown # code-insiders tunnel --no-sleep \ # --accept-server-license-terms