FLASK_APP / start_api.bat
pranit144's picture
Upload 97 files
e38de99 verified
@echo off
echo ========================================
echo Starting DCRM API Server
echo ========================================
echo.
echo Server will start on http://localhost:5000
echo Press Ctrl+C to stop the server
echo.
echo ========================================
echo.
python -m uvicorn dcrm_api:app --host 0.0.0.0 --port 5000 --reload
pause