summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-18 09:23:19 -0700
committerDessalines <tyhou13@gmx.com>2019-04-18 09:23:19 -0700
commit4ab28c01c6cf0ee376ec3f8a1423f1ea42b94589 (patch)
treea1a92e874e79155ccbd89cf8440a6b85fcfaae69 /install.sh
parent6becaf6239ae518ad7a42bc72b82001591030849 (diff)
Showing how to do live update developing in the install script.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh4
1 files changed, 4 insertions, 0 deletions
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