Meteo-api example app using awesome Nest framework and TypeScript.
Complete api documentation can be found on Apiary.
$ npm install
Recommended database is mysql v8.0.15
.
Create database named meteo-api
.
$ mysql -u username -p meteo-api < meteo-api.sql
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov