CoolFace
Apppublic

TheBrightFuture/Complete-Medical-Chatbot-with-LLMs-LangChain-Pinecone-FastAPI-React-with-authorization

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
start.sh11 linesDownload Raw Back to root
1#!/bin/bash2 3# Start Backend (API)4cd backend && uvicorn main:app --port 8000 &5 6# Start Frontend Server7cd frontend && npm run dev -- --host 0.0.0.0 --port 5173 &8 9 10# Start Nginx (This must stay in the foreground)11nginx -g "daemon off;"