- Get the latest version
You can start by cloning the latest version of Koa Mongo Boilerplate on your local machine by running:
$ git clone -o koa-mongo-boilerplate -b master --single-branch \
[email protected]:garagegigs/koa-mongo-boilerplate.git MyService
$ cd MyServiceYou need to have an access to MongoBD, you can docker-compose to level up an instance
$ docker-compose up -dStart development server
$ npm run devStart production server
$ NODE_ENV=production npm startRun test
$ npm run testRun test coverage
# get test coverage
$ npm run cover