Skip to content

Commit d76afaa

Browse files
Fixed the paths
1 parent ffce383 commit d76afaa

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Scans a path (default `.`) collecting:
5858

5959
Run:
6060
```cmd
61-
cd /d "D:\Chinmay_Personal_Projects\GoMindMapper"
61+
cd /d "D:\GoMindMapper"
6262
go run cmd/main.go -path .
6363
```
6464
Key outputs:
@@ -81,7 +81,7 @@ Static:
8181

8282
Start server (after building frontend if you want the UI):
8383
```cmd
84-
cd /d "D:\Chinmay_Personal_Projects\GoMindMapper"
84+
cd /d "D:\GoMindMapper"
8585
go run cmd/server/main.go -path . -addr :8080
8686
```
8787
Browse:
@@ -105,7 +105,7 @@ Features:
105105

106106
Dev (hot reload):
107107
```cmd
108-
cd /d "D:\Chinmay_Personal_Projects\GoMindMapper\mind-map-react"
108+
cd /d "D:\GoMindMapper\mind-map-react"
109109
npm install
110110
npm start
111111
```

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ server:
55
go run cmd/server/main.go -path . -addr :8080
66

77
ui:
8-
cd /d "D:\Chinmay_Personal_Projects\GoMindMapper\mind-map-react" && npm run dev
8+
cd /d "D:\GoMindMapper\mind-map-react" && npm run dev
99

1010
ui-build:
11-
cd /d "D:\Chinmay_Personal_Projects\GoMindMapper\mind-map-react" && npm run build
11+
cd /d "D:\GoMindMapper\mind-map-react" && npm run build

0 commit comments

Comments
 (0)