Skip to content

Commit 5d86bf9

Browse files
authored
Document ability to manage kotsadm web packages in the dev env (#1225)
Document ability to manage kotsadm web packages
1 parent 25cf4b6 commit 5d86bf9

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,23 @@ make ssh-node0
226226
make build run
227227
```
228228
229-
Subsequent changes to the kotsadm web component are reflected in real-time, no manual steps required.
229+
Subsequent changes to the kotsadm web component are reflected in real-time; no manual steps are required.
230+
However, to add, remove, or upgrade a dependency / package:
231+
232+
* Exec into the kotsadm-web container:
233+
```bash
234+
make kotsadm-web-up-ec
235+
```
236+
237+
* Run the desired `yarn` commands. For example:
238+
```bash
239+
yarn add <package>
240+
```
241+
242+
* When finished, exit the container:
243+
```bash
244+
exit
245+
```
230246
231247
1. To apply additional API changes, stop the current process with Ctrl+C, then run the following command:
232248
```bash

0 commit comments

Comments
 (0)