From bc0209dd3ca050737bd54ab5a8f9b31b59bbf399 Mon Sep 17 00:00:00 2001 From: Ivan Fraixedes Date: Wed, 23 Mar 2022 13:40:41 +0100 Subject: [PATCH] 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 --- satellite/admin/ui/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/satellite/admin/ui/README.md b/satellite/admin/ui/README.md index 695af7495..a879aad0a 100644 --- a/satellite/admin/ui/README.md +++ b/satellite/admin/ui/README.md @@ -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/ +```