[FastAPI] Best Practices - Project Structure
PyTong
Project StructureFastAPI 프로젝트 구조 설계 할때 참고하기 좋다.Netflaix/Dipatch를 참조하여 수정한 자료이다.fastapi-project├── alembic/├── app # 원본은 src 이지만 본인은 app 선호함.│ ├── auth│ │ ├── router.py│ │ ├── schemas.py # pydantic models│ │ ├── models.py # db models│ │ ├── dependencies.py│ │ ├── config.py # local configs│ │ ├── constants.py│ │ ├── exceptions.py│ │ ├── service.py│ │ └── ut..