File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed
Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -90,11 +90,23 @@ To enable local debugging and ensure your application can access necessary Azure
9090 ```
9191 VITE_API_ENDPOINT=https://localhost:52190
9292 ```
93- 4. Install dependencies:
93+ 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+ ```powershell
101+ node -v
102+ npm -v
103+ yarn -v
104+ ```
105+ 5. Install dependencies:
94106 ```powershell
95107 yarn install
96108 ```
97- 5 . Start the application:
109+ 6 . Start the application:
98110 ```powershell
99111 yarn start
100112 ```
You can’t perform that action at this time.
0 commit comments