Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 513 Bytes

README.md

File metadata and controls

37 lines (19 loc) · 513 Bytes

TypeScript + Node + Docker (with code hot-reloading in the container)

For running locally

npm i

Start the dev server

npm run dev

Build the project

npm run build

Start built project

npm start

For running Docker Containers

You'll need docker installed on your machine to run this in case you didn't know!

Build the image

docker-compose build

Start the dev server

make up

Stop the server

make down

Build and start production build

make up-prod