逐步完成前后端服务器

This commit is contained in:
2025-09-09 15:00:30 +08:00
parent fcb09432e9
commit c7dfa1e9fc
2937 changed files with 1477567 additions and 0 deletions

22
dataServer/pyproject.toml Normal file
View File

@ -0,0 +1,22 @@
[project]
name = "pressure-sensor-server"
version = "0.1.0"
description = "ESP32 pressure readings receiver using Flask + SQLite"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"flask>=3.0.0",
"flask-cors>=4.0.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel>=0.41.0"]
build-backend = "setuptools.build_meta"
[tool.uv]
# uv 将根据标准 PEP 配置安装依赖;可使用 `uv sync` 同步环境
[tool.setuptools]
py-modules = ["app", "db"]