blob: b720e5e2db29a5c798da01f6e5e755433b92c9a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
export RUST_LOG="kittybox=debug,retainer::cache=warn,h2=info,rustls=info,tokio=info,tower_http::trace=debug"
export BACKEND_URI=file://./test-dir
export TOKEN_ENDPOINT=https://tokens.indieauth.com/token
export AUTHORIZATION_ENDPOINT=https://indieauth.com/auth
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 '*~' \
-x run \
"$@"
elif [[ "$1" == "run" ]]; then
shift 1
exec cargo run "$@"
else
echo "Usage: ./dev.sh [watch|run]"
exit 1
fi
|