1. 설치 https://fastapi.tiangolo.com/#installation pip install fastapi pip install uvicorn # for ASGI(Asynchronous Server Gateway Interface) server 2. Run the server with the command below. uvicorn {file_name}:app --reload # ex) uvicorn main:app --reload # INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) # INFO: Started reloader process [28720] # INFO: Started server process [..