Spaces:
Sleeping
Sleeping
| @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 | |