simple-setup.sh 299 B

123456789101112131415
  1. #!/bin/bash
  2. cargo build
  3. UAUTH=./target/debug/uauth2
  4. $UAUTH init
  5. $UAUTH cert generate
  6. $UAUTH client create testclient
  7. $UAUTH user create kestrel
  8. echo "please enter password for user 'kestrel'"
  9. $UAUTH user auth -p kestrel
  10. $UAUTH config load /dev/stdin <<EOF
  11. base_url = "http://localhost:2114/"
  12. EOF