Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/depromeet/ohmebddeng-backend
디프만 10기 6조(물좀조) 오맵땡 백엔드
https://github.com/depromeet/ohmebddeng-backend
nestjs nodejs typescript
Last synced: about 2 months ago
JSON representation
디프만 10기 6조(물좀조) 오맵땡 백엔드
- Host: GitHub
- URL: https://github.com/depromeet/ohmebddeng-backend
- Owner: depromeet
- Created: 2021-09-25T08:03:16.000Z (over 3 years ago)
- Default Branch: dev
- Last Pushed: 2021-12-17T15:24:18.000Z (about 3 years ago)
- Last Synced: 2024-05-28T22:57:07.920Z (9 months ago)
- Topics: nestjs, nodejs, typescript
- Language: TypeScript
- Homepage: https://ohmebddeng.kr
- Size: 1.18 MB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# 디프만 10기 6조 Backend Server
![Node Badge](https://img.shields.io/badge/Node.js-026e00?style=flat-square&logo=Node.js&logoColor=white) ![TypeScript Badge](https://img.shields.io/badge/Typescript-235A97?style=flat-square&logo=Typescript&logoColor=white) ![TypeScript Badge](https://img.shields.io/badge/Nest.Js-cc0000?style=flat-square&logo=NestJs&logoColor=white)
## Description디프만 10기 6조 Backend Server Repository
## Install Node
```bash
# This project uses the node14 version.
# Please install node14 version# Window
$ choco install nodejs-lts# Mac
$ brew install node@14# Linux
$ curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash -
$ sudo apt-get install -y nodejs
```## Running the app
```bash
# install node Module
$ npm install# development
$ npm run start# watch mode
$ npm run start:dev# 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
```