Spaces:
Sleeping
Sleeping
File size: 499 Bytes
60470bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | @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
|