Spaces:
Runtime error
Runtime error
File size: 1,092 Bytes
9801c69 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | @echo off
:: βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
:: Tirumala Darshan β One-Click Deploy Script (Windows)
:: βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
echo.
echo ========================================
echo Tirumala Darshan - Deploying...
echo ========================================
echo.
:: Activate virtual environment
call .venv\Scripts\activate.bat
:: Set environment for offline Chronos model
set HF_HUB_OFFLINE=1
set TOKENIZERS_PARALLELISM=false
:: Build frontend if needed
if not exist "client\dist\index.html" (
echo Building frontend...
cd client
call npm run build
cd ..
)
:: Start production server
echo Starting production server on http://localhost:5000
echo Press Ctrl+C to stop
python deploy.py --port 5000 --threads 4
|