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
Copy file name to clipboardExpand all lines: README.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,43 @@ Once the CLA is signed, the GitHub pull request status is updated.
29
29
Please see our [online product documentation](https://docs.linuxfoundation.org/lfx/v/v2/easycla) for a complete product
30
30
overview.
31
31
32
+
## Prerequisites
33
+
1. Make sure you have Node 12.x or higher, together with NPM 6.x or higher.
34
+
2. Install `yarn` globally on your machine.
35
+
36
+
```bash
37
+
$ npm install -g yarn
38
+
```
39
+
40
+
3. Install `angular-cli` globally. (version 11).
41
+
42
+
```bash
43
+
$ npm install -g @angular/cli
44
+
```
45
+
46
+
## Installation
47
+
48
+
From the root of the repo just run:
49
+
50
+
```bash
51
+
$ yarn install
52
+
```
53
+
54
+
## Building
55
+
56
+
1. Run `yarn build` to build the project for your local environment.
57
+
2. The build artifacts will be stored in the `dist/` directory.
58
+
59
+
## Running
60
+
61
+
1. Run `yarn serve --port 8100` (You can use any port but LFX header login/logout works only on port 8100)
62
+
2. If you face any error while running the app use `export NODE_OPTIONS=--openssl-legacy-provider` command in the terminal before `yarn serve --port 8100`
63
+
3. Open new browser window/tab with this link `https://localhost:8100/`.
64
+
4. The app will automatically reload if you change any of the source files.
0 commit comments