2020-04-08 08:56:42 +02:00
|
|
|
# hydra-passwordless
|
|
|
|
|
|
|
|
## Démarrer avec les sources
|
|
|
|
|
2020-04-08 09:02:50 +02:00
|
|
|
```shell
|
|
|
|
# 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
|
2020-04-08 08:56:42 +02:00
|
|
|
```
|
2020-04-08 09:02:50 +02:00
|
|
|
|
|
|
|
Reporter ces éléments dans le fichier de configuration data/server.yml, section "testApp":
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
testApp:
|
|
|
|
enabled: true
|
|
|
|
clientId: <clientId>
|
|
|
|
clientSecret: <clientSecret>
|
2020-04-08 08:56:42 +02:00
|
|
|
```
|
|
|
|
|
2020-04-08 09:02:50 +02:00
|
|
|
Vous devriez pouvoir accéder à l'URL http://localhost:3000/test, qui vous redirigera automatiquement vers la mire d'authentification.
|
|
|
|
|
2020-04-08 08:56:42 +02:00
|
|
|
## FAQ
|
|
|
|
|
|
|
|
### Générer une version de distribution
|
|
|
|
|
|
|
|
```
|
|
|
|
make release
|
|
|
|
```
|