https://github.com/andrewrunner/online-learning-shool
Online shool app backend api example (NestJS, TypeORM, MongoDB, GraphQL)
https://github.com/andrewrunner/online-learning-shool
backend-api graphql mongodb nestjs typeorm typescript
Last synced: 2 months ago
JSON representation
Online shool app backend api example (NestJS, TypeORM, MongoDB, GraphQL)
- Host: GitHub
- URL: https://github.com/andrewrunner/online-learning-shool
- Owner: andrewrunner
- Created: 2023-11-19T20:22:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-22T14:17:29.000Z (over 1 year ago)
- Last Synced: 2025-10-29T08:38:21.608Z (8 months ago)
- Topics: backend-api, graphql, mongodb, nestjs, typeorm, typescript
- Language: TypeScript
- Homepage:
- Size: 332 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Simple backend api for school mamanger app;
### Use
- [NestJS](https://nestjs.com/)
- MongoDB + TypeORM
- GraphQL (graphql-tools, apollo)
- jest
- class-validator - DTO class fields validation
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# Open schema development mode
# http://localhost:3000/graphql
# production mode
$ npm run start:prod
```
## Test
```bash
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov
```