I have created a website using uvicorn and react. I want this to test this using another computer so I was able to run the frontend (http://localhost:3000) using my another computer. The problem is when I send request to backend it is not responding.
I have tried giving port number and host in my uvicorn app ie uvicorn.run("app:app", reload=True,port = 8000, host ='0.0.0.0') but this is not working.Both my computer and the other system are on the same network.I tried running the http://: on my system it worked but not working on the other system