All checks were successful
Deploy to Production / deploy (push) Successful in 44s
- Add entrypoint.sh (migrate → seed → uvicorn) - Add python-dotenv to requirements.txt - Backend container uses entrypoint instead of direct uvicorn Co-Authored-By: Claude Opus 4 <noreply@anthropic.com>
22 lines
298 B
Plaintext
22 lines
298 B
Plaintext
# Core
|
|
fastapi==0.115.0
|
|
uvicorn[standard]==0.30.0
|
|
python-multipart==0.0.9
|
|
|
|
# Database (PostgreSQL 전용, async)
|
|
sqlalchemy[asyncio]==2.0.36
|
|
asyncpg==0.30.0
|
|
alembic==1.14.0
|
|
|
|
# Env
|
|
python-dotenv==1.0.1
|
|
|
|
# Auth
|
|
PyJWT==2.9.0
|
|
bcrypt==4.2.0
|
|
|
|
# Testing
|
|
pytest==8.2.2
|
|
pytest-asyncio==0.24.0
|
|
httpx==0.27.0
|