Spaces:
Runtime error
Runtime error
File size: 777 Bytes
6723d8c 89e5b6e 76f1839 89e5b6e 6eb06d5 79edacd deea2e4 6eb06d5 deea2e4 6723d8c 89e5b6e 8119037 89e5b6e 79edacd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# Versión 1.1
# start_server.sh-v1.1
# Changelog:
# - Asegurado que el script tenga permisos ejecutables.
#!/bin/bash
echo "Starting Jupyter Lab with token [REDACTED]"
NOTEBOOK_DIR="/root/app/data"
# Mount Google Drive
rclone mount gdrive: /home/user/GoogleDrive --daemon
/root/miniconda/bin/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
|