/my-nest-api

Creating an api using Nestjs

Primary LanguageTypeScript

Description

My Nest application setting up my first API. Nest framework TypeScript starter repository.

Installation

% npm install

Running the app

# development
% npm run start

# watch mode
% npm run start:dev

# production mode
% npm run start:prod

Docker Container

Use docker container to setup a test database using postgres. The docker container was setup using:

% docker run -d -p 5444:5432 --name my-postgres -e POSTGRES_PASSWORD=password postgres