/nest_refresh

Refreshing NestJS concepts till building a Microservice and deploying using Kubernetes in Prod with Full Functional Unit and Integration tests

Primary LanguageTypeScript

Refreshing NestJS concepts

docker run --name prod-postgres -p 5432:5432 -e POSTGRES_PASSWORD=pass -d postgres docker exec -it sh su postgres psql

create database devdb;
create user devuser with encrypted password 'devpass';
grant all privileges on database devdb to devuser;