Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
NODE_ENV=
PORT=
MONGO_URI=mongodb+srv://<username>:<userpassword>@<user_database>.veiwzrz.mongodb.net/<user_document>?retryWrites=true&w=majority&appName=<user_app_name>
# MONGO_URI=mongodb+srv://<username>:<userpassword>@<user_database>.veiwzrz.mongodb.net/<user_document>?retryWrites=true&w=majority&appName=<user_app_name>
POSTGRESQL_URI="postgresql://<userid>:<userpw>@localhost:5432/<db_name>?schema=public&connection_limit=10&pool_timeout=20";
12 changes: 0 additions & 12 deletions .github/pull-request-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,14 @@

### 기본

- [x]
- []
- []

### 심화

- [x]
- []

## 주요 변경사항

-
-

## 스크린샷

![image](이미지url)

## 멘토에게

-
-
- 셀프 코드 리뷰를 통해 질문 이어가겠습니다.
3 changes: 1 addition & 2 deletions .swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@
"module": {
"type": "commonjs"
},
"sourceMaps": true
}
}
836 changes: 836 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions eslint.confg.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import js from '@eslint/js';
import js from "@eslint/js";
import eslintConfigPrettier from "eslint-config-prettier/flat";

export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2024,
sourceType: 'module',
sourceType: "module",
globals: {
console: 'readonly',
process: 'readonly',
console: "readonly",
process: "readonly",
},
},
rules: {
'no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'no-console': 'off',
'prefer-const': 'error',
'no-var': 'error',
semi: ['error', 'always'],
quotes: ['error', 'single'],
"no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
"no-console": "off",
"prefer-const": "error",
"no-var": "error",
},
},
];
eslintConfigPrettier,
];
Loading