[email protected] -m venv venv
source venv/Scripts/activate
source venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload
### FastAPI 접속
``` bash
# 기본 주소
http://127.0.0.1:8000
# Swagger 주소 (자동 생성)
http://127.0.0.1:8000/docs
# requirements.txt 업데이트
pip freeze > requirements.txt- 공동 작업을 위해 임의로 생성한 파일 구조입니다. 편하게 추가/수정/삭제 해주세요!