Delete deploy.bat

This commit is contained in:
Md Tahseen Hussain
2026-01-20 16:14:34 +05:30
committed by GitHub
parent a921ec11fb
commit 039ab073bc

View File

@@ -1,31 +0,0 @@
@echo off
echo ========================================
echo AnimePahe API - Vercel Deployment
echo ========================================
echo.
echo [1/3] Installing dependencies...
call npm install
if %errorlevel% neq 0 (
echo ERROR: Failed to install dependencies
pause
exit /b 1
)
echo.
echo [2/3] Testing locally...
echo Starting server on http://localhost:3000
echo Press Ctrl+C to stop and continue to deployment
echo.
call npm start
echo.
echo [3/3] Ready to deploy!
echo.
echo Run this command to deploy:
echo vercel
echo.
echo Or for production:
echo vercel --prod
echo.
pause