Spaces:
Sleeping
Sleeping
File size: 322 Bytes
7bd555c 9780e53 7bd555c 14ee7b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
set -e
export PATH=$PATH:/home/vscode/.local/bin
# Run restore before starting VS Code
python3 /restore.py || echo "[Restore] Skipped or failed"
# Start autobackup in background
python3 /backup.py &
# Start VS Code (code-server)
exec code-server --bind-addr 0.0.0.0:7860 --auth none /home/vscode/workspace
|