docker-compose -f hydra-service/quickstart.yml -f hydra-service/quickstart-postgres.yml up -d
curl --location --request POST 'http://127.0.0.1:4445/clients' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "my-client-id",
"client_name": "example-hydra-client",
"client_secret": "my-client-secret",
"client_uri": "https://example.io",
"grant_types": ["authorization_code"],
"redirect_uris": ["http://127.0.0.1:8080/callback"],
"response_types": ["code","id_token"],
"scope": "openid profile"
}'
gradlew :hydra-client:bootJar && java -jar hydra-client/build/libs/hydra-client-0.0.1-SNAPSHOT.jar
gradlew :hydra-consent:bootJar && java -jar hydra-consent/build/libs/hydra-consent-0.0.1-SNAPSHOT.jar