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

https://github.com/aserto-dev/auth0-gw

Auth0 Gateway
https://github.com/aserto-dev/auth0-gw

Last synced: 4 months ago
JSON representation

Auth0 Gateway

Awesome Lists containing this project

README

          

# auth0-gw

Auth0 Gateway

config.yaml
```
---
gateway:
port: 8383
path: /events

directory:
host: directory.prod.aserto.com:8443
api_key:
tenant_id:
insecure: false

auth0:
domain:
client_id:
client_secret:

loader:
bin_path: /app
template: /tmpl/transform.tmpl

scheduler:
interval: 15m
```

```
docker run -ti \
--name auth0-gw \
--rm \
-p 8383:8383 \
-v $PWD:/cfg \
-v $PWD/templates:/tmpl \
ghcr.io/aserto-dev/auth0-gw:latest run --config=/cfg/config.yaml --template=/tmpl/transform.tmpl
```