-
Notifications
You must be signed in to change notification settings - Fork 18
[박수훈] sprint5 리팩토링 및 sprint6 제출 #9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mdeeno
wants to merge
12
commits into
codeit-sprint-fullstack:express-박수훈
Choose a base branch
from
mdeeno:express-박수훈-sprint6
base: express-박수훈
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
The head ref may contain hidden characters: "express-\uBC15\uC218\uD6C8-sprint6"
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3908b10
feat: 백엔드 리팩토링 및 API 구현 완료 (계층형 아키텍처 적용)
mdeeno 850d975
fix: 서버 실행 오류 수정 및 라우터 연결 완료
mdeeno e89e879
fix: 컨트롤러 오탈자 수정
mdeeno 0f76616
refactor: 서버 이름 변경(server->src) 및 package.json 알리아스 설정
mdeeno 9db6457
refactor: server.js와 app.js 병합
mdeeno 448fb0d
refactor: 기능적 계층 구조로 리팩토링(repository 패턴)
mdeeno be323d4
fix: import 파일 에러 수정
mdeeno 3c15016
refactor: 에러 반환 코드 리팩토링 및 불필요한 파일 삭제
mdeeno 19700a4
refactor: 코드리뷰 반영
mdeeno dcefec2
feat: cors 미들웨어 whiteList 수정
mdeeno 5900781
feat: 레포지토리 내보내기 방식 수정
mdeeno 2087a89
docs: gitignore 레포믹스 파일 추가
mdeeno File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| node_modules | ||
|
|
||
| .env | ||
| .env.* | ||
| !.env.example | ||
|
|
||
| generated/ | ||
| .DS_Store | ||
| /generated/prisma | ||
|
|
||
| ._* | ||
|
|
||
| repomix-output.xml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "printWidth": 80, | ||
| "bracketSpacing": true, | ||
| "trailingComma": "all", | ||
| "semi": true, | ||
| "singleQuote": true | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| import js from '@eslint/js'; | ||
|
|
||
| export default [ | ||
| js.configs.recommended, | ||
| { | ||
| languageOptions: { | ||
| ecmaVersion: 2024, | ||
| sourceType: 'module', | ||
| globals: { | ||
| console: 'readonly', | ||
| process: 'readonly', | ||
| }, | ||
| }, | ||
|
|
||
| rules: { | ||
| 'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }], | ||
| 'no-console': 'off', | ||
| 'prefer-const': 'error', | ||
| 'no-var': 'error', | ||
| }, | ||
| }, | ||
| ]; | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Critical]
js가 import되지 않아 ReferenceError가 발생합니다.