https://github.com/christian-007/nestjs-basic
Backend app created with NestJS along with TypeORM
https://github.com/christian-007/nestjs-basic
backend nestjs typeorm typescript
Last synced: about 2 months ago
JSON representation
Backend app created with NestJS along with TypeORM
- Host: GitHub
- URL: https://github.com/christian-007/nestjs-basic
- Owner: Christian-007
- Created: 2020-08-23T05:36:38.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-09T14:30:17.000Z (almost 6 years ago)
- Last Synced: 2025-02-27T05:16:04.703Z (over 1 year ago)
- Topics: backend, nestjs, typeorm, typescript
- Language: TypeScript
- Homepage:
- Size: 415 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NestJS Basic App
A basic backend app created with NestJS and TypeORM.
**Note: the `ormconfig.json` is omitted. If you'd like to use this repo, please create your own Local Database and config the `ormconfig.json` just like [here](https://typeorm.io/#/using-ormconfig).*
## Installation
```bash
$ npm install
```
## Running the app
```bash
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
```
## References
- NestJS Website - [https://nestjs.com](https://nestjs.com/)
- TypeORM - [https://typeorm.io/#/](https://typeorm.io/#/)