The interview assignment for the Sesami backend role uses Typescript as the programming language, Nestjs as the web framework, and Sqlite3 for the database.
$ yarn install# development
$ yarn run start
# watch mode
$ yarn run start:dev
# production mode
$ yarn run start:prodOnce the application has been run, you will be able to view the API on localhost:3000/api and the swagger API documents on localhost:3000/api/docs.
# unit tests
$ yarn run test
# e2e tests
$ yarn run test:e2e
# test coverage
$ yarn run test:cov