Use this template for projects using Express to serve up basic content.
Clone this repo or generate a new repo using this template. Then, install dependencies and choose whether to run in development or production mode.
npm ci
To run in development mode:
npm start
To run in production mode:
docker-compose up
# or to run it in detached mode
docker-compose up -d
To lint and run tests:
npm run lint
npm run test