We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 065e861 + fa90db8 commit 6e9dc0fCopy full SHA for 6e9dc0f
1 file changed
docs/LocalSetupGuide.md
@@ -90,11 +90,23 @@ To enable local debugging and ensure your application can access necessary Azure
90
```
91
VITE_API_ENDPOINT=https://localhost:52190
92
93
-4. Install dependencies:
+4. Before installing dependencies, ensure Node.js (LTS) and Yarn are installed on your machine:
94
+ - Recommended: install Node.js LTS (18.x or later) from https://nodejs.org
95
+ - Install Yarn if it's not already available:
96
+ ```powershell
97
+ npm install -g yarn
98
+ ```
99
+ - Verify the installations:
100
101
+ node -v
102
+ npm -v
103
+ yarn -v
104
105
+5. Install dependencies:
106
```powershell
107
yarn install
108
-5. Start the application:
109
+6. Start the application:
110
111
yarn start
112
0 commit comments