Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added correct npm install command and added step to create .npmrc file
  • Loading branch information
colin-mckibben-sp authored Sep 25, 2024
1 parent 6c5b0d9 commit 52e3499
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,27 @@ npm install npm@latest -g
git clone https://github.com/sailpoint-oss/developer.sailpoint.com.git
```

2. Install the project's NPM packages
2. Create a `.npmrc` file and add the following contents. If you are not a SailPoint employee, you will need to provide your own fontawesome token.

```text
@awesome.me:registry=https://npm.fontawesome.com/
@fortawesome:registry=https://npm.fontawesome.com/
//npm.fontawesome.com/:_authToken=<your token here>
```

3. Install the project's NPM packages
```bash
npm install
npm install --legacy-peer-deps
```
3. Generate the API docs. They are auto-generated, so we do not track them in the repository and instead build them at runtime.
4. Generate the API docs. They are auto-generated, so we do not track them in the repository and instead build them at runtime.
```bash
npm run gen-api-docs-all
```
4. Start the website
5. Start the website
```bash
npm run start
```
Expand Down

0 comments on commit 52e3499

Please sign in to comment.