https://github.com/zaker/no-factor-auth
A no factor auth server, to accomodate the need for testing jwt tokens in dev environments.
https://github.com/zaker/no-factor-auth
jwt-server jwt-tokens oauth2-server openid-connect
Last synced: 5 months ago
JSON representation
A no factor auth server, to accomodate the need for testing jwt tokens in dev environments.
- Host: GitHub
- URL: https://github.com/zaker/no-factor-auth
- Owner: zaker
- License: lgpl-3.0
- Created: 2018-11-28T18:35:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-04-17T22:57:17.000Z (about 1 year ago)
- Last Synced: 2025-04-18T12:31:56.300Z (about 1 year ago)
- Topics: jwt-server, jwt-tokens, oauth2-server, openid-connect
- Language: Go
- Size: 126 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# This is a no factor "Authentication" service aka YOLO Auth
It doesn't provide security, it provides a signed token to services that needs to perform e2e testing
## Setup
It contains a private key in config.go that signs the jwt tokens
And since it's mostly zero config, it starts on , all incomming on local server.
## Run
```bash
go build
./no-factor-auth
```
## Docker
```bash
docker run -p 8089:8089 lambdaville/no-factor-auth
```