Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FastAPI Worksohp
# FastAPI Workshop

A tiny FastAPI application built for practicing open-source contributions.
This project is designed for third-year CS students participating in
Expand Down
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from app.models import ProfileCreate, ProfileResponse
from app.store import profile_store
import math



app = FastAPI(title="FastAPI Worksohp", version="0.1.0")
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ fastapi>=0.110.0
pydantic>=2.0.0
httpx>=0.27.0
pytest>=8.0.0
uvicorn[standard]>=0.29.0