simple-setup.sh 536 B

123456789101112131415161718192021222324
  1. #!/bin/bash
  2. set -e
  3. cargo build
  4. UIDC=./target/debug/uidc
  5. $UIDC init
  6. $UIDC config load /dev/stdin <<EOF
  7. base_url = "http://localhost:2114"
  8. EOF
  9. $UIDC key generate ed25519
  10. $UIDC client create testclient ed25519
  11. $UIDC user create kestrel
  12. echo "please enter password for user 'kestrel'"
  13. $UIDC user update-auth -p kestrel
  14. $UIDC group create testgroup
  15. $UIDC role create testrole
  16. $UIDC group attach testgroup roles testrole
  17. $UIDC group attach testgroup users kestrel
  18. $UIDC scope create testscope
  19. $UIDC scope attach testscope roles testrole