lemmy/install.sh

45 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
2019-04-26 09:49:14 -06:00
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.
2020-01-26 18:44:00 -07:00
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
# Set other environment variables
2019-05-02 10:55:29 -06:00
export JWT_SECRET=changeme
export HOSTNAME=rrr
2019-04-26 10:15:17 -06:00
# 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
2020-03-13 09:08:42 -06:00
case "${init_db,,}" in
y|yes ) init_db_valid=1; init_db_final=1;;
2020-02-08 13:56:13 -07:00
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
2020-02-08 13:54:41 -07:00
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
2019-04-06 16:49:51 -06:00
cd ui
yarn
yarn build
# Build and run the backend
2019-04-06 16:49:51 -06:00
cd ../server
2020-03-13 09:08:42 -06:00
RUST_LOG=debug 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