Skip to content

Commit 3aca422

Browse files
authored
Merge branch 'fastapi:master' into master
2 parents 8bb3b4c + c49c4e7 commit 3aca422

4 files changed

Lines changed: 41 additions & 5 deletions

File tree

.github/workflows/issue-manager.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Issue Manager
22

33
on:
44
schedule:
5-
- cron: "10 3 * * *"
5+
- cron: "13 22 * * *"
66
issue_comment:
77
types:
88
- created
@@ -16,6 +16,7 @@ on:
1616

1717
permissions:
1818
issues: write
19+
pull-requests: write
1920

2021
jobs:
2122
issue-manager:
@@ -35,8 +36,8 @@ jobs:
3536
"delay": 864000,
3637
"message": "Assuming the original need was handled, this will be automatically closed now. But feel free to add more comments or create new issues or PRs."
3738
},
38-
"changes-requested": {
39+
"waiting": {
3940
"delay": 2628000,
40-
"message": "As this PR had requested changes to be applied but has been inactive for a while, it's now going to be closed. But if there's anyone interested, feel free to create a new PR."
41+
"message": "As this PR has been waiting for the original user for a while but seems to be inactive, it's now going to be closed. But if there's anyone interested, feel free to create a new PR."
4142
}
4243
}

docs/en/docs/environment-variables.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,6 @@ This way, when you type `python` in the terminal, the system will find the Pytho
243243

244244
////
245245

246-
This way, when you type `python` in the terminal, the system will find the Python program in `/opt/custompython/bin` (the last directory) and use that one.
247-
248246
So, if you type:
249247

250248
<div class="termy">

docs/en/docs/release-notes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,17 @@ hide:
77

88
## Latest Changes
99

10+
### Docs
11+
12+
* 📝 Remove duplicate line in docs for `docs/en/docs/environment-variables.md`. PR [#12169](https://github.com/fastapi/fastapi/pull/12169) by [@prometek](https://github.com/prometek).
13+
14+
### Translations
15+
16+
* 🌐 Add Korean translation for `docs/ko/docs/project-generation.md`. PR [#12157](https://github.com/fastapi/fastapi/pull/12157) by [@BORA040126](https://github.com/BORA040126).
17+
1018
### Internal
1119

20+
* 👷 Update `issue-manager.yml`. PR [#12159](https://github.com/fastapi/fastapi/pull/12159) by [@tiangolo](https://github.com/tiangolo).
1221
* ✏️ Fix typo in `fastapi/params.py`. PR [#12143](https://github.com/fastapi/fastapi/pull/12143) by [@surreal30](https://github.com/surreal30).
1322

1423
## 0.114.0

docs/ko/docs/project-generation.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Full Stack FastAPI 템플릿
2+
3+
템플릿은 일반적으로 특정 설정과 함께 제공되지만, 유연하고 커스터마이징이 가능하게 디자인 되었습니다. 이 특성들은 여러분이 프로젝트의 요구사항에 맞춰 수정, 적용을 할 수 있게 해주고, 템플릿이 완벽한 시작점이 되게 해줍니다. 🏁
4+
5+
많은 초기 설정, 보안, 데이터베이스 및 일부 API 엔드포인트가 이미 준비되어 있으므로, 여러분은 이 템플릿을 (프로젝트를) 시작하는 데 사용할 수 있습니다.
6+
7+
GitHub 저장소: <a href="https://github.com/tiangolo/full-stack-fastapi-template" class="external-link" target="_blank">Full Stack FastAPI 템플릿</a>
8+
9+
## Full Stack FastAPI 템플릿 - 기술 스택과 기능들
10+
11+
-[**FastAPI**](https://fastapi.tiangolo.com): Python 백엔드 API.
12+
- 🧰 [SQLModel](https://sqlmodel.tiangolo.com): Python SQL 데이터 상호작용을 위한 (ORM).
13+
- 🔍 [Pydantic](https://docs.pydantic.dev): FastAPI에 의해 사용되는, 데이터 검증과 설정관리.
14+
- 💾 [PostgreSQL](https://www.postgresql.org): SQL 데이터베이스.
15+
- 🚀 [React](https://react.dev): 프론트엔드.
16+
- 💃 TypeScript, hooks, Vite 및 기타 현대적인 프론트엔드 스택을 사용.
17+
- 🎨 [Chakra UI](https://chakra-ui.com): 프론트엔드 컴포넌트.
18+
- 🤖 자동으로 생성된 프론트엔드 클라이언트.
19+
- 🧪 E2E 테스트를 위한 Playwright.
20+
- 🦇 다크 모드 지원.
21+
- 🐋 [Docker Compose](https://www.docker.com): 개발 환경과 프로덕션(운영).
22+
- 🔒 기본으로 지원되는 안전한 비밀번호 해싱.
23+
- 🔑 JWT 토큰 인증.
24+
- 📫 이메일 기반 비밀번호 복구.
25+
-[Pytest]를 이용한 테스트(https://pytest.org).
26+
- 📞 [Traefik](https://traefik.io): 리버스 프록시 / 로드 밸런서.
27+
- 🚢 Docker Compose를 이용한 배포 지침: 자동 HTTPS 인증서를 처리하기 위한 프론트엔드 Traefik 프록시 설정 방법을 포함.
28+
- 🏭 GitHub Actions를 기반으로 CI (지속적인 통합) 및 CD (지속적인 배포).

0 commit comments

Comments
 (0)