To run this project, you can use docker, by typing to build the image:
docker-compose build
and then, to run the server, that will automatically run npm install
and npm start
docker-compose up
Without docker, you can run npm install
and then npm start
.
It will be available, in the web, with the url as localhost:8000
You can run this, continually with a command, It will run concurrent requests
npm run task-command
For testing you can run npm test
For linting npm run lint
or trying automatically fix lint errors npm run lint:fix
Running tests and lint in the containers, should be done acessing it, with docker-compose exec adp-challenge /bin/sh
and then runing the desired npm script.