From 0412ad789638b7573da22fe0b732d915ffb7c46b Mon Sep 17 00:00:00 2001 From: Vinay Kumar Dubey Date: Fri, 21 Mar 2025 12:45:09 +0530 Subject: [PATCH] docs: update README with correct Uvicorn command for src structure --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e9f47483..1b6f0dd0 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ yarn start # to start local dev server ```bash cd backend pip install -r requirements.txt # to install all packages -uvicorn main:app --reload # to run a local server +uvicorn src.main:app --reload # to run a local server ``` If you are getting a `library not found for -lhdf5` error on MacOS, you can try the following