uvicorn main:app --reload
uvicorn main:app --reload 명령에 관하여... 명령 uvicorn main:app은 다음을 나타냅니다:
main: main.py 파일 (파이썬 "모듈"). app: the object created inside of main.py with the line app = FastAPI(). --reload: 코드가 변경된 후 서버 재시작하기. 개발환경에서만 사용.