You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Navigate to `http://localhost:4200/` in your browser to see the application. The application will automatically reload if you change any of the source files.
21
-
22
-
______
23
-
**Note:** Ensure you have an updated version of Node.js installed on your machine. You can verify your Node.js version with:
24
-
```bash
25
-
node -v
26
-
```
27
-
If you are using nvm as your Node.js version manager, you can switch to the right version with:
28
-
```bash
29
-
nvm use
30
-
```
31
-
_____
32
-
## Build
33
-
34
-
To build the application, run:
35
-
36
-
```bash
37
-
npm run build
38
-
```
1
+
## Installation and Development Server
2
+
3
+
1. Clone this repository:
4
+
```bash
5
+
git clone <repository-url>
6
+
```
7
+
2. Navigate to the project directory:
8
+
```bash
9
+
cd<project-folder>
10
+
```
11
+
3. Install the dependencies:
12
+
```bash
13
+
npm install
14
+
```
15
+
4. Start the development server:
16
+
```bash
17
+
npm start
18
+
```
19
+
20
+
Navigate to `http://localhost:4200/` in your browser to see the application. The application will automatically reload if you change any of the source files.
21
+
22
+
---
23
+
24
+
**Note:** Ensure you have an updated version of Node.js installed on your machine. You can verify your Node.js version with:
25
+
26
+
```bash
27
+
node -v
28
+
```
29
+
30
+
If you are using nvm as your Node.js version manager, you can switch to the right version with:
0 commit comments