mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-01 15:40:16 +00:00
5c6258390c
* Adding a way to GetComments for a community given its name only. * Adding getcomments to api docs. * A first pass at locally working isomorphic integration. * Testing out cargo-husky. * Testing a fail hook. * Revert "Testing a fail hook." This reverts commit0941cf1736
. * Moving server to top level, now that UI is gone. * Running cargo fmt using old way. * Adding nginx, fixing up docker-compose files, fixing docs. * Trying to re-add API tests. * Fixing prod dockerfile. * Redoing nightly fmt * Trying to fix private message api test. * Adding CommunityJoin, PostJoin instead of joins from GetComments, etc. - Fixes #1122 * Fixing fmt. * Fixing up docs. * Removing translations. * Adding apps / clients to readme. * Fixing main image. * Using new lemmy-isomorphic-ui with better javascript disabled. * Try to fix image uploads in federation test * Revert "Try to fix image uploads in federation test" This reverts commita2ddf2a90b
. * Fix post url federation * Adding some more tests, some still broken. * Don't need gitattributes anymore. * Update local federation test setup * Fixing tests. * Fixing travis build. * Fixing travis build, again. * Changing lemmy-isomorphic-ui to lemmy-ui * Error in travis build again. Co-authored-by: Felix Ableitner <me@nutomic.com>
74 lines
1.8 KiB
Bash
Executable File
74 lines
1.8 KiB
Bash
Executable File
#!/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
|
|
|
|
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
|
|
source ./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
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
# Optionally initialize the database
|
|
ask_to_init_db
|
|
|
|
# Build the web client
|
|
cd ui
|
|
yarn
|
|
yarn build
|
|
|
|
# Build and run the backend
|
|
cd ../server
|
|
RUST_LOG=debug cargo run
|
|
|
|
# For live coding, where both the front and back end, automagically reload on any save
|
|
ask_to_auto_reload
|