commit 566d2223ac5a3b3b2019a9411b87bbc125405fbf
Author: lichong <18518571399@163.com>
Date: Tue Jul 2 11:50:39 2024 +0800
init
diff --git a/api/main.py b/api/main.py
new file mode 100644
index 0000000..0b11773
--- /dev/null
+++ b/api/main.py
@@ -0,0 +1,52 @@
+from flask import Flask
+from pymongo import MongoClient
+
+app = Flask(__name__)
+client = MongoClient("mongodb://localhost:27019/")
+db = client["back"]
+collection = db["users"]
+
+
+# 测试
+@app.route("/")
+def hello():
+ return "Hello World!"
+
+
+# 新增用户
+@app.route("/insert")
+def insert_data():
+ user = {"name": "John Doe", "age": 25, "city": "New York"}
+ collection.insert_one(user)
+ return "Data inserted successfully!"
+
+
+# 查询用户
+@app.route("/query")
+def query_data():
+ users = collection.find()
+ result = ""
+ for user in users:
+ result += f"Name: {user['name']}, Age: {user['age']}, City: {user['city']}
"
+ return result
+
+
+# 更新用户
+@app.route("/update")
+def update_data():
+ query = {"name": "John Doe"}
+ new_data = {"$set": {"age": 30, "city": "San Francisco"}}
+ collection.update_one(query, new_data)
+ return "Data updated successfully!"
+
+
+# 删除用户
+@app.route("/delete")
+def delete_data():
+ query = {"name": "John Doe"}
+ collection.delete_one(query)
+ return "Data deleted successfully!"
+
+
+if __name__ == "__main__":
+ app.run()
diff --git a/front/.gitignore b/front/.gitignore
new file mode 100644
index 0000000..782636d
--- /dev/null
+++ b/front/.gitignore
@@ -0,0 +1,25 @@
+# Logs
+logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+lerna-debug.log*
+
+node_modules
+dist
+package-lock.json
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/front/README.md b/front/README.md
new file mode 100644
index 0000000..f529bc8
--- /dev/null
+++ b/front/README.md
@@ -0,0 +1,7 @@
+# base
+
+This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `
+