Auth Service

Auth service manages some elements of the Auth0 auth process, and exposes a number of public facing endpoints for that purpose.

Additionally, this service stores some user metadata.

Although most of the sensitive user metadata is stored in Auth0, some user metadata is stored in a database user_service, in table users.

These tables aren't in use currently, but will be.

Run

Docker

$ docker build -t auth-service .
$ docker run -p 8080:8080 -e PORT=8080 auth-service

Go

$ go run main.go rest 

Last updated