Skip to content

Commit

Permalink
Document ability to manage kotsadm web packages in the dev env (#1225)
Browse files Browse the repository at this point in the history
Document ability to manage kotsadm web packages
  • Loading branch information
sgalsaleh authored Sep 25, 2024
1 parent 25cf4b6 commit 5d86bf9
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,23 @@ make ssh-node0
make build run
```
Subsequent changes to the kotsadm web component are reflected in real-time, no manual steps required.
Subsequent changes to the kotsadm web component are reflected in real-time; no manual steps are required.
However, to add, remove, or upgrade a dependency / package:
* Exec into the kotsadm-web container:
```bash
make kotsadm-web-up-ec
```
* Run the desired `yarn` commands. For example:
```bash
yarn add <package>
```
* When finished, exit the container:
```bash
exit
```
1. To apply additional API changes, stop the current process with Ctrl+C, then run the following command:
```bash
Expand Down

0 comments on commit 5d86bf9

Please sign in to comment.