From d57b26428114fc336c05c38c11549176662d6423 Mon Sep 17 00:00:00 2001 From: Cxx0822 <1556464090@qq.com> Date: Mon, 20 Oct 2025 09:19:11 +0800 Subject: [PATCH] feat --- .idea/.gitignore | 8 --- .../inspectionProfiles/profiles_settings.xml | 6 -- .idea/log-alert-service.iml | 10 --- .idea/misc.xml | 7 -- .idea/modules.xml | 8 --- __pycache__/main.cpython-312.pyc | Bin 583 -> 0 bytes gitignore | 68 ++++++++++++++++++ requirements.txt | 5 +- 8 files changed, 69 insertions(+), 43 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/log-alert-service.iml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 __pycache__/main.cpython-312.pyc create mode 100644 gitignore diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 13566b8..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,8 +0,0 @@ -# Default ignored files -/shelf/ -/workspace.xml -# Editor-based HTTP Client requests -/httpRequests/ -# Datasource local storage ignored files -/dataSources/ -/dataSources.local.xml diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/log-alert-service.iml b/.idea/log-alert-service.iml deleted file mode 100644 index 74d515a..0000000 --- a/.idea/log-alert-service.iml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index f447362..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index d88adc6..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/__pycache__/main.cpython-312.pyc b/__pycache__/main.cpython-312.pyc deleted file mode 100644 index 1c2a5f3409f830c19821e4d1350bcc2d23b0b88b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 583 zcmYL`ze^lJ6vyA}?5|T#BN|Y&P*TJzw6X{xh=OQ@AcEa;aLnC~=g9tIW=>)%1w~6c z{|3?j#3m4J7A%5VqzNb6S^4I?I|uf?@7p);yPwD2l*xfkVIoPD1>!k)Gju4&C03&^v~!ZX@t< zp7MT=z=2;W{WIMP$-OnE^vc!-$`6t^h0(|$dN{x?1<(<$TX`n^mol$%Cao?(VXw|M0c#E`LP{8Ib^Q*-{LfE zMSMw)VQF?$%NW{}5ONPwPcVBApZ>b#-{YTe-MK^BcENH^r;n!3#2+&8Y!NbCP_QQ3 QMm_sLM$gCY;A7_tuV%@HrvLx| diff --git a/gitignore b/gitignore new file mode 100644 index 0000000..7ddac70 --- /dev/null +++ b/gitignore @@ -0,0 +1,68 @@ +# Python 字节码文件 +__pycache__/ +*.py[cod] +*$py.class + +# C 扩展 +*.so + +# 分发/打包 +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# 虚拟环境 +venv/ +env/ +ENV/ +.env +.venv + +# 测试 +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ + +# Django 相关 +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal +media/ + +# PyCharm IDE +.idea/ +*.iml +*.iws +*.ipr + +# VS Code +.vscode/ +*.code-workspace +.history/ + +# 其他 +.DS_Store + +logs/ +packages/ \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index e2eac61..36adcf2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1 @@ -fastapi~=0.119.0 -pydantic~=2.12.2 -SQLAlchemy~=2.0.44 -requests~=2.32.5 \ No newline at end of file +fastapi~=0.119.0 pydantic~=2.12.2 SQLAlchemy~=2.0.44 requests~=2.32.5 \ No newline at end of file