Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 856 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 856 Bytes

Nest Starter

Description

This project is a reimplementation of node-rest-starter using the Nest framework.

It is currently a WIP.

Getting Started

  1. Install Node module dependencies via: npm install
  2. Use the default configuration in ./config/env/default.js or override with your own configuration that matches the NODE_ENV environment variable by copying the ./config/env/development.template.js file and renaming it to match the value of $NODE_ENV
  3. Start the application via npm start

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov