环境统一

This commit is contained in:
geeker
2026-09-19 20:02:27 +08:00
commit fda520698d
5 changed files with 1050 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
__pycache__
.python-version
.venv
+1
View File
@@ -0,0 +1 @@
# evn management
+11
View File
@@ -0,0 +1,11 @@
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
def main():
print("Hello from env-management!")
if __name__ == "__main__":
main()
+9
View File
@@ -0,0 +1,9 @@
[project]
name = "env-management"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi[standard]>=0.141.1",
]
Generated
+1024
View File
File diff suppressed because it is too large Load Diff