blob: f00dd6cd09db1058babb66f6d887f55487fa95f3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
export RUST_LOG="trace,retainer::cache=warn,html5ever=info,hyper=info,multipart=info,h2=warn,rustls=warn,warp=info"
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
exec systemfd --no-pid -s http::8080 -- cargo watch -x run
|