Skip to content

Commit 24ff3b3

Browse files
committed
chore: add simple README.md
1 parent 2414e4f commit 24ff3b3

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

README.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# PyCon Korea API Server (2024 ~)
2+
3+
## 1. 로컬 개발 환경 설정
4+
본 프로젝트는 Python3.11 (또는 이후 버전)과 Poetry를 사용합니다.
5+
- Poetry 설치는 [여기](https://python-poetry.org/docs/)에서 확인해주세요.
6+
7+
### 1.1. 프로젝트 설치
8+
```bash
9+
poetry install
10+
```
11+
12+
### 1.2. pre-commit hook 설정
13+
본 프로젝트에서는 코딩 컨벤션을 준수하기 위해 [pre-commit](https://pre-commit.com/)을 사용합니다.
14+
pre-commit을 설치하려면 다음을 참고해주세요.
15+
16+
#### 1.2.1. Linux / macOS
17+
```bash
18+
# 설치
19+
make hooks-install
20+
21+
# 프로젝트 전체 코드 lint 검사 & format
22+
make lint
23+
24+
# 프로젝트 전체 코드에 대해 mypy 타입 검사
25+
make mypy
26+
```
27+
28+
#### 1.2.2. Windows
29+
```bash
30+
# 설치
31+
poetry run pre-commit install
32+
33+
# 프로젝트 전체 코드 lint 검사 & format
34+
poetry run pre-commit run --all-files
35+
36+
# 프로젝트 전체 코드에 대해 mypy 타입 검사
37+
poetry run pre-commit run mypy --all-files
38+
```

0 commit comments

Comments
 (0)