File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments