From 4ed440ca6339944e504ca06d05d01b8b1f47c512 Mon Sep 17 00:00:00 2001 From: Dave Waring <168016869+davewaring@users.noreply.github.com> Date: Mon, 22 Sep 2025 09:02:04 -0400 Subject: [PATCH] Update INSTALL.md removed BrainDrive-Core from front and backend cd commands --- INSTALL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 7189741..f7d393b 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -77,7 +77,7 @@ Look at [/backend/.env-dev](https://github.com/BrainDriveAI/BrainDrive-Core/blob In the **first terminal window**: ```bash -cd BrainDrive-Core/backend +cd backend uvicorn main:app --host localhost --port 8005 ``` @@ -88,7 +88,7 @@ uvicorn main:app --host localhost --port 8005 In the **second terminal window**: ```bash -cd BrainDrive-Core/frontend +cd frontend npm install ``` @@ -147,14 +147,14 @@ conda activate BrainDriveDev ### 3️⃣ Start the Backend Server ```bash -cd BrainDrive-Core/backend +cd backend uvicorn main:app --reload --host localhost --port 8005 ``` ### 4️⃣ Start the Frontend Server ```bash -cd BrainDrive-Core/frontend +cd frontend npm run dev ```