mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 04:00:02 +00:00
b35757b429
* do send_activity after http response * move to util function * format * fix prometheus * make synchronous federation configurable * cargo fmt * empty * empty --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
20 lines
536 B
Bash
Executable file
20 lines
536 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
export LEMMY_DATABASE_URL=postgres://lemmy:password@localhost:5432
|
|
export LEMMY_SYNCHRONOUS_FEDERATION=1 # currently this is true in debug by default, but still.
|
|
pushd ..
|
|
cargo build
|
|
rm target/lemmy_server || true
|
|
cp target/debug/lemmy_server target/lemmy_server
|
|
./api_tests/prepare-drone-federation-test.sh
|
|
popd
|
|
|
|
yarn
|
|
yarn api-test || true
|
|
|
|
killall lemmy_server
|
|
|
|
for INSTANCE in lemmy_alpha lemmy_beta lemmy_gamma lemmy_delta lemmy_epsilon; do
|
|
psql "$LEMMY_DATABASE_URL" -c "DROP DATABASE $INSTANCE"
|
|
done
|