-
Notifications
You must be signed in to change notification settings - Fork 4
Web BE Project Structure
정수원 edited this page Nov 5, 2020
·
5 revisions
server
| app.js # App entry point
├───config # Environment variables and configs
│ ├───db_connection.js
│ └───query.js
├───models # Database models
│ ├───auth.js
│ ├───comment.js
│ ├───issue.js
│ ├───label.js
│ └───milestone.js
├───route # route controllers
│ ├───index.js
│ └───api
│ ├───auth
│ | ├───controller.js
│ | └───index.js
│ ├───comment
│ | ├───controller.js
│ | └───index.js
│ ├───issue
│ | ├───comment
│ | | ├───comment
│ | | ├───controller.js
│ | | └───index.js
│ | ├───controller.js
│ | └───index.js
│ ├───label
│ | ├───controller.js
│ | └───index.js
│ └───milestone
│ ├───controller.js
│ └───index.js
└───services # All the business logic is hereJ013 구승효 (SeunghyoKu) | J084 박재윤 (j03y14) | J186 정수원 (JungSWon) | S017 박성민 (rnfxl92) | S039 이승진 (devilzcough)