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
2. Open your copied repo folder in terminal and install necessary modules with command, make sure that you have installed [npm](https://www.npmjs.com/get-npm):
23
+
2. Open your copied repo folder in terminal and checkout `feature/backend` branch to use bundle with backend.
24
+
25
+
```bash
26
+
git checkout feature/backend
27
+
```
28
+
29
+
3. Install necessary modules, make sure that you have installed [npm](https://www.npmjs.com/get-npm):
24
30
25
31
```bash
26
32
npm install
33
+
# then for backend
34
+
cd backend
35
+
npm install
27
36
```
28
37
29
-
3. Install [angular-cli](https://cli.angular.io/) globally to use its commands in the terminal:
38
+
4. Install [angular-cli](https://cli.angular.io/) globally to use its commands in the terminal:
30
39
31
40
```bash
32
41
npm install --global @angular/cli
33
42
```
34
43
35
-
4. Now you are able to run or build the project:
44
+
5. Now you are able to run or build the project:
45
+
46
+
Run `npm start` or `ng serve` for a dev server. The app will automatically reload if you change any of the source files. Or run `npm run build` or `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
36
47
37
-
Run `npm start` or `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
48
+
Go to `backend` directory and run `npm start`to start node.js backend.
38
49
39
-
Run `npm run build` or `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
50
+
Navigate to `http://localhost:4200/`. Use the following credentials to sign in the Dashboard: user: _[email protected]_ , password: _admin_
40
51
41
52
# FEATURES
42
53
@@ -46,6 +57,10 @@ Run `npm run build` or `ng build` to build the project. The build artifacts will
0 commit comments