2020-07-10 18:15:41 +00:00
|
|
|
#!/bin/bash
|
2019-04-26 15:49:14 +00:00
|
|
|
set -e
|
|
|
|
|
2020-02-08 20:53:46 +00:00
|
|
|
# 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-27 01:44:00 +00:00
|
|
|
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432/lemmy
|
2020-02-08 20:53:46 +00:00
|
|
|
|
|
|
|
# Set other environment variables
|
2019-05-02 16:55:29 +00:00
|
|
|
export JWT_SECRET=changeme
|
|
|
|
export HOSTNAME=rrr
|
2019-04-26 16:15:17 +00:00
|
|
|
|
2020-05-11 17:16:08 +00:00
|
|
|
yes_no_prompt_invalid() {
|
|
|
|
echo "Invalid input. Please enter either \"y\" or \"n\"." 1>&2
|
|
|
|
}
|
|
|
|
|
|
|
|
ask_to_init_db() {
|
|
|
|
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
|
|
|
|
[yY]* ) init_db_valid=1; init_db_final=1;;
|
|
|
|
[nN]* ) init_db_valid=1; init_db_final=0;;
|
|
|
|
* ) yes_no_prompt_invalid;;
|
|
|
|
esac
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
if [ "$init_db_final" = 1 ]
|
|
|
|
then
|
2020-09-15 19:26:47 +00:00
|
|
|
source ./db-init.sh
|
2020-05-11 17:16:08 +00:00
|
|
|
read -n 1 -s -r -p "Press ANY KEY to continue execution of this script, press CTRL+C to quit..."
|
|
|
|
echo
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
ask_to_auto_reload() {
|
|
|
|
auto_reload_valid=0
|
|
|
|
auto_reload_final=0
|
|
|
|
while [ "$auto_reload_valid" == 0 ]
|
|
|
|
do
|
|
|
|
echo "Automagically reload the project when source files are changed?"
|
|
|
|
echo "ONLY ENABLE THIS FOR DEVELOPMENT!"
|
|
|
|
read -p "(y/n) " auto_reload
|
|
|
|
case "$auto_reload" in
|
|
|
|
[yY]* ) auto_reload_valid=1; auto_reload_final=1;;
|
|
|
|
[nN]* ) auto_reload_valid=1; auto_reload_final=0;;
|
|
|
|
* ) yes_no_prompt_invalid;;
|
|
|
|
esac
|
|
|
|
echo
|
|
|
|
done
|
|
|
|
if [ "$auto_reload_final" = 1 ]
|
|
|
|
then
|
|
|
|
cd ui && yarn start
|
|
|
|
cd server && cargo watch -x run
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-02-08 20:53:46 +00:00
|
|
|
# Optionally initialize the database
|
2020-05-11 17:16:08 +00:00
|
|
|
ask_to_init_db
|
2020-02-08 20:53:46 +00:00
|
|
|
|
|
|
|
# Build the web client
|
2019-04-06 22:49:51 +00:00
|
|
|
cd ui
|
|
|
|
yarn
|
|
|
|
yarn build
|
2020-02-08 20:53:46 +00:00
|
|
|
|
|
|
|
# Build and run the backend
|
2019-04-06 22:49:51 +00:00
|
|
|
cd ../server
|
2020-03-13 15:08:42 +00:00
|
|
|
RUST_LOG=debug cargo run
|
2019-04-18 16:23:19 +00:00
|
|
|
|
2020-05-11 17:16:08 +00:00
|
|
|
# For live coding, where both the front and back end, automagically reload on any save
|
|
|
|
ask_to_auto_reload
|