blob: 979b85a7903599435252d91c051ad897aa5db463 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/sh
if [[ -z $KITTYBOX_LOG ]]; then
export KITTYBOX_LOG="kittybox=debug,retainer::cache=warn,h2=info,rustls=info,tokio=info,tower_http::trace=debug,sqlx=trace"
fi
#export BACKEND_URI=file://./test-dir
export BACKEND_URI="postgres://localhost?dbname=kittybox&host=/run/postgresql"
export JOB_QUEUE_URI="postgres://localhost?dbname=kittybox&host=/run/postgresql"
export BLOBSTORE_URI=file://./media-store
export AUTH_STORE_URI=file://./auth-store
export COOKIE_SECRET=1234567890abcdefghijklmnopqrstuvwxyz
#export COOKIE_SECRET_FILE=/dev/null
if [[ "$1" == "watch" ]]; then
shift
exec systemfd --no-pid -s http::8080 -- cargo watch \
--ignore '.direnv' \
--ignore '*~' \
-L "$KITTYBOX_LOG" \
-x run \
"$@"
elif [[ "$1" == "run" ]]; then
shift 1
export RUST_LOG="$KITTYBOX_LOG"
exec cargo run "$@"
elif [[ "$1" == "_run" ]]; then
shift 1
release=$1
shift 1
exec target/${release}/kittybox "$@"
else
echo "Usage: ./dev.sh [watch|run]"
exit 1
fi
|