Middleware d'authentification OpenID Connect "passwordless" pour serveur Ory Hydra
Go to file
wpetit d65a7248d1 Update README 2020-04-08 09:02:50 +02:00
cmd/server Initial commit 2020-04-08 08:56:42 +02:00
internal Initial commit 2020-04-08 08:56:42 +02:00
misc Initial commit 2020-04-08 08:56:42 +02:00
oidc Initial commit 2020-04-08 08:56:42 +02:00
.gitignore Initial commit 2020-04-08 08:56:42 +02:00
Makefile Initial commit 2020-04-08 08:56:42 +02:00
README.md Update README 2020-04-08 09:02:50 +02:00
go.mod Initial commit 2020-04-08 08:56:42 +02:00
go.sum Initial commit 2020-04-08 08:56:42 +02:00
modd.conf Initial commit 2020-04-08 08:56:42 +02:00
scaffold.yml Initial commit 2020-04-08 08:56:42 +02:00

README.md

hydra-passwordless

Démarrer avec les sources

# Dans un premier terminal, lancer le serveur hydra-passwordless
make watch

# Dans un second terminal, lancer le serveur hydra
make hydra

# Dans un dernier terminal, générer le clientId et le clientSecret 
# pour le serveur hydra-passwordless
make create-client

Reporter ces éléments dans le fichier de configuration data/server.yml, section "testApp":

testApp:
  enabled: true
  clientId: <clientId>
  clientSecret: <clientSecret>

Vous devriez pouvoir accéder à l'URL http://localhost:3000/test, qui vous redirigera automatiquement vers la mire d'authentification.

FAQ

Générer une version de distribution

make release