Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 414 Bytes

File metadata and controls

27 lines (23 loc) · 414 Bytes

Rakshak (रक्षक)

Start frontend

cd Frontend
npm install
npm run dev

Start backend

cd Backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload --port=5000

Start video streaming server

cd video-server
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python video_server.py