https://github.com/blue-hope/moit-backend
제1회 Unidthon 대상 수상작
https://github.com/blue-hope/moit-backend
Last synced: 7 months ago
JSON representation
제1회 Unidthon 대상 수상작
- Host: GitHub
- URL: https://github.com/blue-hope/moit-backend
- Owner: blue-hope
- Created: 2021-11-06T09:29:55.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-08T12:44:06.000Z (almost 4 years ago)
- Last Synced: 2025-01-19T18:36:22.816Z (9 months ago)
- Language: TypeScript
- Homepage:
- Size: 1000 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 한번에,빠르게 moit - backend
### 제1회 Unidthon 대상 수상작
대학생을 위한 배달 서비스
[@Frontend](https://github.com/dionidip/moit-frontend) [@IOS](https://github.com/jaeho0718/moti-ios)
## Installation
```bash
$ npm install
```## Prerequisite
```bash
# install ts-node (may need sudo)
$ npm -g install ts-node# install sqlite3 (for test)
$ sudo apt-get install sqlite3
$ sqlite3 --version# install global ts-node
$ npm install -g ts-node
```## Running the app
```bash
# local
$ npm run start# production mode
$ npm run start:prod
```## Test
```bash
# unit test
$ npm run test# e2e test
$ npm run test:e2e# test coverage
$ npm run test:cov
```## Lint
use settings.json in VSCode
open settings
```bash
# cmd + shift + p (or ctrl + shift + p)
```write lint settings
```json
"editor.formatOnSave": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
```