Update README
This commit is contained in:
parent
61aae078b5
commit
523ce77a84
23
Makefile
23
Makefile
|
@ -25,13 +25,26 @@ up:
|
||||||
down:
|
down:
|
||||||
docker-compose down -v --remove-orphans
|
docker-compose down -v --remove-orphans
|
||||||
|
|
||||||
create-client:
|
create-default-client:
|
||||||
docker-compose exec hydra \
|
docker-compose exec \
|
||||||
sh -c 'HYDRA_URL=http://localhost:4445 hydra clients create -c http://localhost:3002/oauth2/callback'
|
-e HYDRA_URL=http://localhost:4445 \
|
||||||
|
hydra \
|
||||||
|
hydra clients create \
|
||||||
|
-c http://localhost:3002/oauth2/callback \
|
||||||
|
--post-logout-callbacks http://localhost:3002
|
||||||
|
|
||||||
|
|
||||||
list-clients:
|
list-clients:
|
||||||
docker-compose exec hydra \
|
docker-compose exec \
|
||||||
sh -c 'HYDRA_URL=http://localhost:4445 hydra clients list'
|
-e HYDRA_URL=http://localhost:4445 \
|
||||||
|
hydra \
|
||||||
|
hydra clients list
|
||||||
|
|
||||||
|
hydra-interactive:
|
||||||
|
docker-compose exec \
|
||||||
|
-e HYDRA_URL=http://localhost:4445 \
|
||||||
|
hydra \
|
||||||
|
/bin/sh
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf release
|
rm -rf release
|
||||||
|
|
14
README.md
14
README.md
|
@ -10,10 +10,18 @@ Ce middleware permet une authentification de type "[passwordless](https://auth0.
|
||||||
# Dans un premier terminal, lancer le serveur hydra-passwordless + hydra (via docker-compose/modd)
|
# Dans un premier terminal, lancer le serveur hydra-passwordless + hydra (via docker-compose/modd)
|
||||||
make watch
|
make watch
|
||||||
|
|
||||||
|
# Optionnel
|
||||||
|
#
|
||||||
# Dans un dernier terminal, générer le clientId et le clientSecret
|
# Dans un dernier terminal, générer le clientId et le clientSecret
|
||||||
# pour le serveur hydra-passwordless.
|
# pour l'application de test de https://forge.cadoles.com/wpetit/goweb-oidc
|
||||||
# Ces identifiants pourront être utilisés par votre application OIDC.
|
make create-default-client
|
||||||
make create-client
|
|
||||||
|
# Vous pouvez également utiliser le client hydra pour gérer vos clients OIDC
|
||||||
|
make hydra-interactive
|
||||||
|
|
||||||
|
# Une fois dans le conteneur, vous pouvez utiliser la commande `hydra`.
|
||||||
|
# Par exemple, pour lister les clients existants
|
||||||
|
hydra clients list
|
||||||
```
|
```
|
||||||
|
|
||||||
### URLs
|
### URLs
|
||||||
|
|
Loading…
Reference in New Issue