From: Dessalines Date: Thu, 18 Apr 2019 16:23:19 +0000 (-0700) Subject: Showing how to do live update developing in the install script. X-Git-Url: http://these/git/?a=commitdiff_plain;h=4ab28c01c6cf0ee376ec3f8a1423f1ea42b94589;p=lemmy.git Showing how to do live update developing in the install script. --- 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