Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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
```

Expand Down Expand Up @@ -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
```

Expand Down