sebastiendan / nestjs-api-gateway

⚡️NestJS API Gateway recipe with JWT authentication, multi-node Web Sockets messaging and microservice example
70 stars 19 forks source link

How to view API docs ? #1

Open 0mars opened 4 years ago

0mars commented 4 years ago

Hi how to view API docs, do you have OpenAPI docs available ?

sebastiendan commented 4 years ago

Hey, yes it is activated and the url is specified here: https://github.com/sebastiendan/nestjs-api-gateway/blame/9e284811564f9fd47176c75b8248a75a8e5e7b76/src/main.ts#L25

0mars commented 4 years ago

where does it store the credentials, user info ?

0mars commented 4 years ago

can you provide setup instructions. I want to use it in a docker-compose project

sebastiendan commented 4 years ago

The user credentials aren't managed by the API gateway, but rather within a service that is accessed behind it. You can take a look at my auth microservice repo with NestJS.

You also have another of my repo that introduce a Terraform recipe to set up a whole infra (with Kubernetes) based on the API gateway and the microservices.