@@ -0,0 +1,23 @@
+.venv/
+__pycache__/
+*.py[cod]
+*.pyo
+*.pyd
+.pytest_cache/
+.mypy_cache/
+.ruff_cache/
+.coverage
+.coverage.*
+htmlcov/
+*.egg-info/
+dist/
+build/
+.env
+.env.*
+.idea/
+.vscode/
+.DS_Store
+Thumbs.db
@@ -0,0 +1,5 @@
+"""
+__init__.py -
+auther: tanlie
+date: 2026/8/23
@@ -0,0 +1,11 @@
+app -
+from flask import Flask
+
+def create_app():
+ app = Flask(__name__)
+ app.config.from_object('app.config.setting')
+ return app
+setting -
+ginger -
+from app.app import create_app
+app = create_app()
+if __name__ == '__main__':
+ app.run(debug=True)
@@ -0,0 +1 @@
+Flask==3.1.3