File size: 680 Bytes
c85b71d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@echo off
echo ========================================
echo PUSH TO HUGGING FACE SPACE
echo ========================================
echo.
echo Enter your NEW token from: https://huggingface.co/settings/tokens
echo.
set /p TOKEN="Paste token here: "
echo.
echo Pushing to Space...
echo.
cd /d D:\sand\docker-sandbox-space
git push https://Speedofmastery:%TOKEN%@huggingface.co/spaces/Speedofmastery/HMM main
echo.
if %ERRORLEVEL% == 0 (
    echo ✅ SUCCESS! Files pushed to Space
    echo Wait 2-5 minutes for Docker build
    echo Then test: curl https://speedofmastery-hmm.hf.space/health
) else (
    echo ❌ FAILED! Check token is valid with Write permission
)
echo.
pause