https://github.com/depromeet/ohmebddeng-backend
디프만 10기 6조(물좀조) 오맵땡 백엔드
https://github.com/depromeet/ohmebddeng-backend
nestjs nodejs typescript
Last synced: 6 months ago
JSON representation
디프만 10기 6조(물좀조) 오맵땡 백엔드
- Host: GitHub
- URL: https://github.com/depromeet/ohmebddeng-backend
- Owner: depromeet
- Created: 2021-09-25T08:03:16.000Z (about 4 years ago)
- Default Branch: dev
- Last Pushed: 2021-12-17T15:24:18.000Z (almost 4 years ago)
- Last Synced: 2025-03-29T12:23:16.502Z (7 months ago)
- Topics: nestjs, nodejs, typescript
- Language: TypeScript
- Homepage: https://ohmebddeng.kr
- Size: 1.18 MB
- Stars: 8
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# 디프만 10기 6조 Backend Server
  
## 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
```