Skip to content
This repository has been archived by the owner on Dec 23, 2022. It is now read-only.

tktcorporation/nestjs-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nestjs-sample

What is this?

This is a sample project of NestJS on Docker.

Architecture

  • Node v12.16.1
  • NestJS

Setup

Build Docker

$ docker-compose build

DB Migration

$ docker-compose run --rm app "yarn && yarn migration:run"

Test

$ docker-compose run --rm app "yarn test"

Serve NestJS

$ docker-compose run --rm --service-ports app "yarn start"

Use Api

Access http://{DockerIP}:3000

  • ApiDoc: http://{DockerIP}:3000/api/

Details