VortexCommerceBackend / run_local.bat
hisham-cmd's picture
Optimized Sync: Differential Upload & Performance Tweak
60470bc
Raw
History Blame Contribute Delete
499 Bytes
@echo off
echo ==========================================
echo Starting VortexCommerce Local Backend...
echo ==========================================
if not exist venv (
echo [!] venv not found. Creating it...
python -m venv venv
)
call venv\Scripts\activate
echo [*] Installing dependencies...
pip install -r requirements.txt
echo [OK] Dependencies ready.
echo [*] Starting Uvicorn on http://localhost:8000
set PYTHONPATH=.
uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
pause