/ErabliereNestJS

A repos I used to learn NestJS

Primary LanguageTypeScriptMIT LicenseMIT

LearnNestJS

A repos I used to learn NestJS.

Videos:

Install and generate a project

npm install -g @nestjs/cli
nest new project-name

Run the project

cd project-name
npm run start:dev

Run postman test

newman run .\LearnNestJS.postman_collection.json

Docker

docker build -t erabliereapi/product-api .
docker run -d -p 3000:3000 erabliereapi/product-api

Kubernetes

kubectl create namespace crudapp
kubectl apply -f .\k8s\deployment.yaml -n crudapp

also deploy on of the service in the k8s folder. nodeport for local cluster et clusterip for the cloud.

Agora.io

See accessToken controller.