diff --git a/docs/ko/docs/tutorial/first-steps.md b/docs/ko/docs/tutorial/first-steps.md index 8cdbced57..db78f1678 100644 --- a/docs/ko/docs/tutorial/first-steps.md +++ b/docs/ko/docs/tutorial/first-steps.md @@ -13,36 +13,37 @@ ```console $ fastapi dev main.py - FastAPI 개발 서버 시작 중 🚀 + FastAPI Starting development server 🚀 - __init__.py 파일이 있는 디렉터리에서 - 패키지 파일 구조를 검색하는 중 - /home/user/code/awesomeapp에서 임포트하는 중 + Searching for package file structure from directories + with __init__.py files + Importing from /home/user/code/awesomeapp module 🐍 main.py - code 다음 코드로 모듈에서 FastAPI 앱 오브젝트를 임포트하는 중: + code Importing the FastAPI app object from the module with + the following code: from main import app - app 임포트 문자열 사용: main:app + app Using import string: main:app - server 서버가 http://127.0.0.1:8000에서 시작됨 - server 문서는 http://127.0.0.1:8000/docs에 있음 + server Server started at http://127.0.0.1:8000 + server Documentation at http://127.0.0.1:8000/docs - tip 개발 모드로 실행 중이며, 프로덕션에서는 다음을 사용하세요: + tip Running in development mode, for production use: fastapi run - 로그: + Logs: - INFO 다음 디렉터리의 변경 사항을 감시합니다: + INFO Will watch for changes in these directories: ['/home/user/code/awesomeapp'] - INFO Uvicorn이 http://127.0.0.1:8000에서 실행 중 (Press CTRL+C + INFO Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) - INFO WatchFiles를 사용하여 리로더 프로세스 [383138]를 시작했습니다 - INFO 서버 프로세스 [383153]를 시작했습니다 - INFO 애플리케이션 시작을 기다리는 중입니다. - INFO 애플리케이션 시작이 완료되었습니다. + INFO Started reloader process [383138] using WatchFiles + INFO Started server process [383153] + INFO Waiting for application startup. + INFO Application startup complete. ```