- Docker Compose 개발 환경 설정 (PostgreSQL, pgAdmin, Redis) - 데이터베이스 스키마 초기 설계 (projects, files, materials 테이블) - Python requirements.txt 작성 (FastAPI, SQLAlchemy, Pandas 등) - .gitignore 설정 완료 (Python, Docker, 개발 도구 제외 파일) - README.md 작성 (프로젝트 개요, 기술 스택, 개발 로드맵) - Phase 1 기반 시스템 구축 준비 완료
29 lines
439 B
Plaintext
29 lines
439 B
Plaintext
# FastAPI 웹 프레임워크
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
|
|
# 데이터베이스
|
|
sqlalchemy==2.0.23
|
|
psycopg2-binary==2.9.9
|
|
alembic==1.13.1
|
|
|
|
# 파일 처리
|
|
pandas==2.1.4
|
|
openpyxl==3.1.2
|
|
python-multipart==0.0.6
|
|
|
|
# 데이터 검증
|
|
pydantic==2.5.2
|
|
pydantic-settings==2.1.0
|
|
|
|
# 기타 유틸리티
|
|
python-dotenv==1.0.0
|
|
httpx==0.25.2
|
|
redis==5.0.1
|
|
|
|
# 개발 도구
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
black==23.11.0
|
|
flake8==6.1.0
|