12 lines
302 B
Bash
Executable File
12 lines
302 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
hydra clients create \
|
|
--id daddy \
|
|
--secret daddycool \
|
|
-n Daddy \
|
|
-a email,email_verified,openid \
|
|
--token-endpoint-auth-method client_secret_post \
|
|
--post-logout-callbacks http://localhost:8081/logout/redirect \
|
|
-c http://localhost:8081/oauth2/callback |