FLIP : 나만의 문제집 프로젝트 BackEnd 리포
root
├─config : config node module 설정파일
└─src
└─domain // 서비스 domain root 디렉토리 ex) auth, workbook
├─interfaces // Controller, Request, Response
├─application // Service
├─domain // Entity
└─infrastructure // Repository$ npm install# development
$ npm run start
# watch mode
$ npm run start:dev# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov# pm2
$ pm2 start ecosystem.config.js