Skip to content

Commit fcfff60

Browse files
authored
Merge pull request #6 from rklpoi5678/express-김윤기
Express 김윤기 스프린트미션7
2 parents 323b640 + 2673963 commit fcfff60

42 files changed

Lines changed: 2144 additions & 483 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
NODE_ENV=
22
PORT=
3-
MONGO_URI=mongodb+srv://<username>:<userpassword>@<user_database>.veiwzrz.mongodb.net/<user_document>?retryWrites=true&w=majority&appName=<user_app_name>
3+
# MONGO_URI=mongodb+srv://<username>:<userpassword>@<user_database>.veiwzrz.mongodb.net/<user_document>?retryWrites=true&w=majority&appName=<user_app_name>
4+
POSTGRESQL_URI="postgresql://<userid>:<userpw>@localhost:5432/<db_name>?schema=public&connection_limit=10&pool_timeout=20";

.github/pull-request-template.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,14 @@
22

33
### 기본
44

5-
- [x]
6-
- []
7-
- []
8-
95
### 심화
106

11-
- [x]
12-
- []
13-
147
## 주요 변경사항
158

16-
-
17-
-
18-
199
## 스크린샷
2010

2111
![image](이미지url)
2212

2313
## 멘토에게
24-
25-
-
2614
-
2715
- 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

.swcrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@
1313
"module": {
1414
"type": "commonjs"
1515
},
16-
"sourceMaps": true
17-
}
16+
}

bun.lock

Lines changed: 836 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eslint.confg.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
import js from '@eslint/js';
1+
import js from "@eslint/js";
2+
import eslintConfigPrettier from "eslint-config-prettier/flat";
23

34
export default [
45
js.configs.recommended,
56
{
67
languageOptions: {
78
ecmaVersion: 2024,
8-
sourceType: 'module',
9+
sourceType: "module",
910
globals: {
10-
console: 'readonly',
11-
process: 'readonly',
11+
console: "readonly",
12+
process: "readonly",
1213
},
1314
},
1415
rules: {
15-
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
16-
'no-console': 'off',
17-
'prefer-const': 'error',
18-
'no-var': 'error',
19-
semi: ['error', 'always'],
20-
quotes: ['error', 'single'],
16+
"no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
17+
"no-console": "off",
18+
"prefer-const": "error",
19+
"no-var": "error",
2120
},
2221
},
23-
];
22+
eslintConfigPrettier,
23+
];

0 commit comments

Comments
 (0)