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