Lital Chaghbi. ID: 39691365
$ npm install mocha
$ npm install chai
$ npm install chai-json
$ npm install supertest
$ npm test
$ PORT=3000 npm start
curl -X POST http://localhost:3000/calculate -H 'content-type: application/json' -d '{"calculatorState": null, "input": "1"}'
curl -X POST http://localhost:3000/calculate -H 'content-type: application/json' -d '{"calculatorState": {"display":"5","part1":"12","part2":"5","action":"+"}, "input": "="}'
docker build -t calculator .
docker run -t -p 3000:3000 calculator
docker-compose up