blob: 682bf3d1d2ae2868b8b4c1394f308afd9149c298 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
export RUST_LOG="debug,retainer::cache=warn,html5ever=info,hyper::proto=info,multipart=info,h2=warn,rustls=warn"
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 cargo run --bin kittybox
|