From 46c35e078f74088600a1fe3c2b3bc979cd4eb738 Mon Sep 17 00:00:00 2001 From: "Randy Sugianto (Yuku)" Date: Tue, 18 Jul 2023 12:03:13 +0800 Subject: [PATCH] fix: Update instructions to start server in BUILD.md (#3037) server -> server start --- BUILD.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.md b/BUILD.md index 3b98cb1ee..484238a3a 100644 --- a/BUILD.md +++ b/BUILD.md @@ -44,7 +44,7 @@ When developing the UI, the most convenient way is to use two terminals. The fir In the first terminal do: ```shell -$ go run . server --insecure --without-password --disable-csrf-token-checks +$ go run . server start --insecure --without-password --disable-csrf-token-checks ``` In the second terminal, in the `htmlui` repository run: @@ -72,7 +72,7 @@ $ npm run build 2. In the `kopia` repository run: ```shell -go run . server --insecure --without-password --html=../htmlui/build +go run . server start --insecure --without-password --html=../htmlui/build ``` ## KopiaUI App