Update app.py
Browse files
app.py
CHANGED
@@ -71,4 +71,4 @@ async def predict_sepsis(input_data: InputData):
|
|
71 |
if __name__ == "__main__":
|
72 |
import uvicorn
|
73 |
# Run the FastAPI application on the local host and port 8000
|
74 |
-
CMD ["uvicorn", "app:app", "--host", "
|
|
|
71 |
if __name__ == "__main__":
|
72 |
import uvicorn
|
73 |
# Run the FastAPI application on the local host and port 8000
|
74 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|