
- Setup project structure with FastAPI - Create database models for users, gifts, preferences, and recommendations - Configure SQLite database with SQLAlchemy ORM - Setup Alembic for database migrations - Implement user authentication with JWT - Create API endpoints for users, gifts, preferences, and recommendations - Integrate OpenAI API for gift recommendations - Add comprehensive documentation
15 lines
281 B
Plaintext
15 lines
281 B
Plaintext
fastapi==0.104.0
|
|
uvicorn==0.23.2
|
|
sqlalchemy==2.0.22
|
|
alembic==1.12.0
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
pydantic==2.4.2
|
|
pydantic-settings==2.0.3
|
|
python-multipart==0.0.6
|
|
python-dotenv==1.0.0
|
|
tenacity==8.2.3
|
|
httpx==0.25.0
|
|
ruff==0.1.0
|
|
openai==1.1.1
|
|
tiktoken==0.5.1 |