Quiz challenge about Harry Potter
# install dependencies
$ npm install
# Run Unit tests
$ npm run test-local
# Run on dev mode - Access localhost:3000
$ npm run dev
# Run on production mode
$ npm run build
$ npm start
# Access localhost:3000
# Run from docker
$ docker build -t harry-potter-quiz .
# Run image localy
$ docker run -d --restart=always -p 3000:3000 harry-potter-quiz
# Access http://localhost:3000