diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rwxr-xr-x | dev.sh | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index e8dbc27..fbaa011 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ dump.rdb \#*\# .\#* .*~ -*~ \ No newline at end of file +*~ +/test-dir \ No newline at end of file diff --git a/dev.sh b/dev.sh new file mode 100755 index 0000000..1faca15 --- /dev/null +++ b/dev.sh @@ -0,0 +1,9 @@ +#!/bin/sh +export RUST_LOG="debug,retainer::cache=warn,html5ever=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 |