Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 1.54 KB

README.md

File metadata and controls

47 lines (32 loc) · 1.54 KB

multiple-choice-questions

Build Status Nest.js TypeORM GraphQL License

Description

A simple multiple choice question API with (NestJS)[https://nestjs.com/] and (GraphQL)[https://graphql.org/] query language.

It's possible to add questions in mulitple languages and for different categories. The same questions in multiple languages should be combined with the questionUuid column.

The API is available with the following GraphQL entry endpoint /graphql. Also the GraphQL playground is available with the following url https://localhost:3000/graphql.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# test coverage
$ npm run test:cov