|
#!/bin/bash |
|
JUPYTER_TOKEN="${JUPYTER_TOKEN:=huggingface}" |
|
|
|
|
|
NOTEBOOK_DIR="/data" |
|
ORIGINAL_NOTEBOOKS="/home/user/app/notebooks" |
|
ORIGINAL_IMAGES="/home/user/app/notebooks/images" |
|
|
|
echo "Starting notebook and images setup process..." |
|
|
|
|
|
echo "Looking for notebooks in: $ORIGINAL_NOTEBOOKS" |
|
find "$ORIGINAL_NOTEBOOKS" -name "*.ipynb" -type f 2>/dev/null || echo "Cannot find notebooks in $ORIGINAL_NOTEBOOKS" |
|
|
|
|
|
if ls "$ORIGINAL_NOTEBOOKS"/*.ipynb 1> /dev/null 2>&1; then |
|
echo "Found notebooks in $ORIGINAL_NOTEBOOKS" |
|
|
|
|
|
echo "Preparing fresh notebooks for this session..." |
|
mkdir -p "$NOTEBOOK_DIR" |
|
rm -f "$NOTEBOOK_DIR"/*.ipynb |
|
|
|
|
|
cp -v "$ORIGINAL_NOTEBOOKS"/*.ipynb "$NOTEBOOK_DIR/" || echo "Failed to copy notebooks" |
|
else |
|
echo "No notebooks found in expected location. Checking all directories..." |
|
find / -name "*.ipynb" -not -path "*/\.*" 2>/dev/null | head -10 |
|
fi |
|
|
|
|
|
echo "Looking for images in: $ORIGINAL_IMAGES" |
|
IMAGES_DIR="$NOTEBOOK_DIR/images" |
|
|
|
|
|
mkdir -p "$IMAGES_DIR" |
|
rm -f "$IMAGES_DIR"/*.png "$IMAGES_DIR"/*.jpg "$IMAGES_DIR"/*.jpeg "$IMAGES_DIR"/*.gif |
|
|
|
|
|
if [ -d "$ORIGINAL_IMAGES" ]; then |
|
echo "Found images directory at $ORIGINAL_IMAGES" |
|
|
|
|
|
find "$ORIGINAL_IMAGES" -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" -o -name "*.gif" \) -exec cp -v {} "$IMAGES_DIR/" \; || echo "Failed to copy images" |
|
else |
|
echo "No images directory found at $ORIGINAL_IMAGES. Checking alternatives..." |
|
|
|
if [ -d "/home/user/app/images" ]; then |
|
echo "Found images in /home/user/app/images" |
|
find "/home/user/app/images" -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" -o -name "*.gif" \) -exec cp -v {} "$IMAGES_DIR/" \; || echo "Failed to copy images" |
|
else |
|
echo "No images directory found. Creating an empty one." |
|
fi |
|
fi |
|
|
|
|
|
chmod -R 755 "$NOTEBOOK_DIR" |
|
chown -R $(whoami) "$NOTEBOOK_DIR" 2>/dev/null || echo "Could not change ownership" |
|
|
|
|
|
echo "Contents of notebook directory ($NOTEBOOK_DIR):" |
|
ls -la "$NOTEBOOK_DIR" |
|
echo "Contents of images directory ($IMAGES_DIR):" |
|
ls -la "$IMAGES_DIR" |
|
|
|
|
|
echo "Starting JupyterLab..." |
|
jupyter labextension disable "@jupyterlab/apputils-extension:announcements" |
|
|
|
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 |