satellite/admin/ui: Add missing step for building it

Add a missing instruction step for allowing Go to embed the files
generated by the UI build process into the satellite binary.

Change-Id: Ie9223b8bb5317e53e692e3aa1d1086977daa17c9
This commit is contained in:
Ivan Fraixedes 2022-03-23 13:40:41 +01:00
parent 09bb0c6110
commit bc0209dd3c
No known key found for this signature in database
GPG Key ID: 042B474597F96DB7

View File

@ -39,3 +39,9 @@ To create an optimized version of the app:
```bash
npm run build
```
And then, place the files of the build in the assets directory for allowing Go to embed them into the satellite binary.
```bash
cp -r build/* assets/
```