Funghk / start.sh
eoeooe's picture
Update start.sh
8c9fe42 verified
Raw
History Blame Contribute Delete
898 Bytes
#!/bin/bash
# Configuration from your images
REPO_ID=
HF_TOKEN=""
echo "--- System Starting ---"
#
echo "Restoring files from $REPO_ID..."
huggingface-cli download $REPO_ID --local-dir /home/user/storage --repo-type dataset --token $HF_TOKEN
#
cat <<EOF > /home/user/auto_backup.sh
#!/bin/bash
while true; do
sleep 300
echo "Backing up data to Hugging Face..."
huggingface-cli upload $REPO_ID /home/user/storage . --repo-type=dataset --token=$HF_TOKEN
done
EOF
chmod +x /home/user/auto_backup.sh
./auto_backup.sh &
#
cat <<EOF > /home/user/final_backup.sh
#!/bin/bash
#
echo "Hugging Face is about to restart soon. Taking final backup..."
huggingface-cli upload $REPO_ID /home/user/storage . --repo-type=dataset --token=$HF_TOKEN
EOF
chmod +x /home/user/final_backup.sh
./final_backup.sh &
# เงช.
echo "--- System is Ready. Access via Web Terminal ---"
ttyd -p 7860 -W bash