blob: 6ebbd2adaddeac51c177bbc55ba2b1e3ba7a7ea7 (
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"
export BACKEND_URI=file://./test-dir
export TOKEN_ENDPOINT=https://token.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
|