From b10912c43460b1221d585496dcdd7e339ef92bb3 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 18 Apr 2019 09:23:19 -0700 Subject: [PATCH] Showing how to do live update developing in the install script. --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index ac5f5103..88c5bac8 100755 --- a/install.sh +++ b/install.sh @@ -3,3 +3,7 @@ yarn yarn build cd ../server cargo run + +# For live coding, where both the front and back end, automagically reload on any save, do: +# cd ui && yarn start +# cd server && cargo watch -x run