Skip to content

WooodHead/tastiest-backend

 
 

Repository files navigation

Tastiest Backend - NestJS

Starting with PM2

pm2 start yarn --interpreter bash --name tastiest-backend -- start

Grab Postgres internal IPs

You might want to do this to start a new server from pgAdmin etc.

https://stackoverflow.com/a/60668718

  1. Grab network ID
sudo docker ps
  1. Grab internal IP
docker container inspect -f '{{ .NetworkSettings.IPAddress }}' {network_id_from_above}

Serving Documentation

yarn documentation:serve

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.4%
  • Other 1.6%