Middleware goweb pour authentification OpenID Connect.
Go to file
wpetit 8ba7b5d492 Initial commit 2020-05-20 10:43:12 +02:00
cmd/server Initial commit 2020-05-20 10:43:12 +02:00
internal Initial commit 2020-05-20 10:43:12 +02:00
misc Initial commit 2020-05-20 10:43:12 +02:00
.gitignore Initial commit 2020-05-20 10:43:12 +02:00
Makefile Initial commit 2020-05-20 10:43:12 +02:00
README.md Initial commit 2020-05-20 10:43:12 +02:00
client.go Initial commit 2020-05-20 10:43:12 +02:00
go.mod Initial commit 2020-05-20 10:43:12 +02:00
go.sum Initial commit 2020-05-20 10:43:12 +02:00
middleware.go Initial commit 2020-05-20 10:43:12 +02:00
modd.conf Initial commit 2020-05-20 10:43:12 +02:00
option.go Initial commit 2020-05-20 10:43:12 +02:00
provider.go Initial commit 2020-05-20 10:43:12 +02:00
service.go Initial commit 2020-05-20 10:43:12 +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