├── .gitignore ├── README.md ├── nodemon.json ├── package.json ├── src ├── Loaders │ └── db.ts ├── config │ └── index.ts ├── controllers │ ├── boardController.ts │ ├── imageController.ts │ ├── index.ts │ ├── inviteController.ts │ ├── kakaoController.ts │ ├── scheduleController.ts │ ├── tendencyController.ts │ ├── travelController.ts │ └── userController.ts ├── index.ts ├── interfaces │ ├── IBoard.ts │ ├── IGroup.ts │ ├── ISchedule.ts │ ├── ITendency.ts │ ├── IUser.ts │ └── IWish.ts ├── middleware │ └── auth.ts ├── models │ ├── Board.ts │ ├── Group.ts │ ├── Schedule.ts │ ├── Tendency.ts │ ├── User.ts │ └── Wish.ts ├── modules │ ├── getCurrentTime.ts │ ├── image.ts │ ├── jwtToken.ts │ ├── question.ts │ ├── setTimeFormat.ts │ ├── statusCode.ts │ ├── tag.ts │ └── tendencyResult.ts ├── routes │ ├── boardRouter.ts │ ├── imageRouter.ts │ ├── index.ts │ ├── kakaoRouter.ts │ ├── scheduleRouter.ts │ ├── tendencyRouter.ts │ ├── travelRouter.ts │ └── userRouter.ts └── services │ ├── boardService.ts │ ├── groupService.ts │ ├── index.ts │ ├── mainService.ts │ ├── scheduleService.ts │ ├── tendencyService.ts │ └── userService.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/README.md -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/package.json -------------------------------------------------------------------------------- /src/Loaders/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/Loaders/db.ts -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/controllers/boardController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/boardController.ts -------------------------------------------------------------------------------- /src/controllers/imageController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/imageController.ts -------------------------------------------------------------------------------- /src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/index.ts -------------------------------------------------------------------------------- /src/controllers/inviteController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/inviteController.ts -------------------------------------------------------------------------------- /src/controllers/kakaoController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/kakaoController.ts -------------------------------------------------------------------------------- /src/controllers/scheduleController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/scheduleController.ts -------------------------------------------------------------------------------- /src/controllers/tendencyController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/tendencyController.ts -------------------------------------------------------------------------------- /src/controllers/travelController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/travelController.ts -------------------------------------------------------------------------------- /src/controllers/userController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/controllers/userController.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/IBoard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/interfaces/IBoard.ts -------------------------------------------------------------------------------- /src/interfaces/IGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/interfaces/IGroup.ts -------------------------------------------------------------------------------- /src/interfaces/ISchedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/interfaces/ISchedule.ts -------------------------------------------------------------------------------- /src/interfaces/ITendency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/interfaces/ITendency.ts -------------------------------------------------------------------------------- /src/interfaces/IUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/interfaces/IUser.ts -------------------------------------------------------------------------------- /src/interfaces/IWish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/interfaces/IWish.ts -------------------------------------------------------------------------------- /src/middleware/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/middleware/auth.ts -------------------------------------------------------------------------------- /src/models/Board.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/models/Board.ts -------------------------------------------------------------------------------- /src/models/Group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/models/Group.ts -------------------------------------------------------------------------------- /src/models/Schedule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/models/Schedule.ts -------------------------------------------------------------------------------- /src/models/Tendency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/models/Tendency.ts -------------------------------------------------------------------------------- /src/models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/models/User.ts -------------------------------------------------------------------------------- /src/models/Wish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/models/Wish.ts -------------------------------------------------------------------------------- /src/modules/getCurrentTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/getCurrentTime.ts -------------------------------------------------------------------------------- /src/modules/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/image.ts -------------------------------------------------------------------------------- /src/modules/jwtToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/jwtToken.ts -------------------------------------------------------------------------------- /src/modules/question.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/question.ts -------------------------------------------------------------------------------- /src/modules/setTimeFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/setTimeFormat.ts -------------------------------------------------------------------------------- /src/modules/statusCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/statusCode.ts -------------------------------------------------------------------------------- /src/modules/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/tag.ts -------------------------------------------------------------------------------- /src/modules/tendencyResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/modules/tendencyResult.ts -------------------------------------------------------------------------------- /src/routes/boardRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/boardRouter.ts -------------------------------------------------------------------------------- /src/routes/imageRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/imageRouter.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/routes/kakaoRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/kakaoRouter.ts -------------------------------------------------------------------------------- /src/routes/scheduleRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/scheduleRouter.ts -------------------------------------------------------------------------------- /src/routes/tendencyRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/tendencyRouter.ts -------------------------------------------------------------------------------- /src/routes/travelRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/travelRouter.ts -------------------------------------------------------------------------------- /src/routes/userRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/routes/userRouter.ts -------------------------------------------------------------------------------- /src/services/boardService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/boardService.ts -------------------------------------------------------------------------------- /src/services/groupService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/groupService.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/mainService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/mainService.ts -------------------------------------------------------------------------------- /src/services/scheduleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/scheduleService.ts -------------------------------------------------------------------------------- /src/services/tendencyService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/tendencyService.ts -------------------------------------------------------------------------------- /src/services/userService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/src/services/userService.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamDooRiBon/DooRi-Server/HEAD/tsconfig.json --------------------------------------------------------------------------------