Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 303 Bytes

File metadata and controls

13 lines (11 loc) · 303 Bytes
  1. Run the Frontend Run the React app using npm. Use the following command in your terminal:
cd frontend
npm start
  1. Run the Backend Run the FastAPI server using uvicorn. Use the following command in your terminal:
uvicorn app:app --host 127.0.0.1 --port 8000 --log-level info