]> Untitled Git - lemmy.git/blob - install.sh
Add shebang to scripts
[lemmy.git] / install.sh
1 #!/bin/sh
2 set -e
3
4 cd ui
5 yarn
6 yarn build
7 cd ../server
8 cargo run
9
10 # For live coding, where both the front and back end, automagically reload on any save, do:
11 # cd ui && yarn start
12 # cd server && cargo watch -x run