Add initial backend implementation and project configuration files

This commit is contained in:
2026-03-05 21:13:51 -05:00
commit a256616cd2
10 changed files with 2484 additions and 0 deletions

13
pyproject.toml Normal file
View File

@@ -0,0 +1,13 @@
[project]
name = "back-end"
version = "0.1.0"
requires-python = ">=3.14"
dependencies = [
"fastapi==0.135.1",
"pydantic==2.12.5",
"flask==3.1.3",
"flask-cors==6.0.2",
"pymobiledevice3==7.8.3",
"typing==3.10.0.0",
"uvicorn==0.41.0",
]