summaryrefslogtreecommitdiffstats
path: root/install.sh
blob: b368891cf8d2be1069ac089d164f22cb5beced58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash
set -e

# Set the database variable to the default first.
# Don't forget to change this string to your actual database parameters
# if you don't plan to initialize the database in this script.
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy

# Set other environment variables
export JWT_SECRET=changeme
export HOSTNAME=rrr

# Optionally initialize the database
init_db_valid=0
init_db_final=0
while [ "$init_db_valid" == 0 ]
do
  read -p "Initialize database (y/n)? " init_db
  case "${init_db,,}" in 
    y|yes ) init_db_valid=1; init_db_final=1;;
    n|no ) init_db_valid=1; init_db_final=0;;
    * ) echo "Invalid input" 1>&2;;
  esac
  echo
done
if [ "$init_db_final" = 1 ]
then
  source ./server/db-init.sh
  read -n 1 -s -r -p "Press ANY KEY to continue execution of this script, press CTRL+C to quit..."
  echo
fi

# Build the web client
cd ui
yarn
yarn build

# Build and run the backend
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