Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 665 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 665 Bytes

mxa-tech-interview

This repo contains a basic NestJS app to be used as base for our tech interview. Details about what is (and what is not) expected, delivery and more can be found on this site.

Getting started

  1. Install NodeJS, NPM and Docker
  2. Install dependencies of the project
cd mxa-tech-interview
npm install
  1. Start the app with
npm run start:dev

Building the Docker image

docker build -t tech-interview-nest .
docker run -p3000:3000 tech-interview-nest