feat(frontend+backend): connect api backend with frontend

This commit is contained in:
2025-08-30 21:54:36 -04:00
parent 6063ed62e0
commit 133efdddea
21 changed files with 1202 additions and 91 deletions

14
backend/api/__main__.py Normal file
View File

@@ -0,0 +1,14 @@
"""
Entry point for running the FastAPI server with python -m backend.api
"""
import uvicorn
if __name__ == "__main__":
uvicorn.run(
"backend.api:app",
host="0.0.0.0",
port=8000,
reload=True,
log_level="info"
)