The application is a solution for unified authentication methods across many applications. It's based of asymmetric hashing of JWT tokens, with support for sessions and roles
To run the core locally for development purposes, there are a couple steps you have to follow:
- Install dependencies using
npm install
oryarn
. - Copy the file
.env.example
to.env
in theapps/auth
directory - Bring up the development database by using
docker-compose up -d
- Run the app using
nx serve
If everything went according to plan, you should have the app running on port 3333
To make a code contribution, create a PR from your own repository to the master branch.