An open API service indexing awesome lists of open source software.

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.

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
```