Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,43 @@ Once the CLA is signed, the GitHub pull request status is updated.
Please see our [online product documentation](https://docs.linuxfoundation.org/lfx/v/v2/easycla) for a complete product
overview.

## Prerequisites
1. Make sure you have Node 12.x or higher, together with NPM 6.x or higher.
2. Install `yarn` globally on your machine.

```bash
$ npm install -g yarn
```

3. Install `angular-cli` globally. (version 11).

```bash
$ npm install -g @angular/cli
```

## Installation

From the root of the repo just run:

```bash
$ yarn install
```

## Building

1. Run `yarn build` to build the project for your local environment.
2. The build artifacts will be stored in the `dist/` directory.

## Running

1. Run `yarn serve --port 8100` (You can use any port but LFX header login/logout works only on port 8100)
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`
3. Open new browser window/tab with this link `https://localhost:8100/`.
4. The app will automatically reload if you change any of the source files.

## Sample Local URL
`http://localhost:8100/#/cla/project/projectId/user/userId?redirect=URL

Comment on lines +66 to +68
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Unterminated back-tick breaks the rest of the document.

There’s an opening back-tick but no closing delimiter, causing Markdown to treat
the remainder of the file as code.

-`http://localhost:8100/#/cla/project/projectId/user/userId?redirect=URL
+```text
+http://localhost:8100/#/cla/project/projectId/user/userId?redirect=URL
+```
🧰 Tools
🪛 markdownlint-cli2 (0.17.2)

67-67: Bare URL used

(MD034, no-bare-urls)

🤖 Prompt for AI Agents
In README.md around lines 66 to 68, the Markdown code block for the sample local
URL is missing a closing back-tick, causing the rest of the document to be
treated as code. Add a closing back-tick at the end of the URL line to properly
terminate the inline code block.

## License

Copyright The Linux Foundation and each contributor to the LFX platform.
Expand Down
Loading