Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 707 Bytes

README.md

File metadata and controls

44 lines (30 loc) · 707 Bytes

Clean Architecture Sample

Setting up

Install your Node dependencies

$ yarn install
# == OR ==
$ npm install

Running

Ensure that your application has a .env file. This should happen automatically with yarn install or npm install. If not, copy .env.example to .env.

$ npm start

Production Build

The development mode uses ts-node (enabling live debugging), which the author does not guarantee is prepared for production.

Build the Node-compliant code

$ npm run build

Built files will be placed in /dist.

Modify your .env file to "production" mode

# .env
NODE_ENV=production
PORT=8080

Run the server

$ npm start