]> Untitled Git - lemmy.git/blob - install.sh
Showing how to do live update developing in the install script.
[lemmy.git] / install.sh
1 cd ui
2 yarn
3 yarn build
4 cd ../server
5 cargo run
6
7 # For live coding, where both the front and back end, automagically reload on any save, do:
8 # cd ui && yarn start
9 # cd server && cargo watch -x run