mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-25 13:51:19 +00:00
17 lines
324 B
Bash
Executable file
17 lines
324 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
CWD="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
cd $CWD/../
|
|
|
|
source scripts/start_dev_db.sh
|
|
|
|
export LEMMY_CONFIG_LOCATION=config/config.hjson
|
|
export RUST_BACKTRACE=1
|
|
|
|
cargo run --package lemmy_db_perf -- "$@"
|
|
|
|
pg_ctl stop --silent
|
|
|
|
# $PGDATA directory is kept so log can be seen
|