init: 项目初始提交 - NeoZQYY Monorepo 完整代码

This commit is contained in:
Neo
2026-02-15 14:58:14 +08:00
commit ded6dfb9d8
769 changed files with 182616 additions and 0 deletions

34
.gitignore vendored Normal file
View File

@@ -0,0 +1,34 @@
# ===== 临时与缓存 =====
tmp/
__pycache__/
*.pyc
.hypothesis/
.pytest_cache/
logs/
# ===== 环境配置(保留模板) =====
.env
.env.local
!.env.template
# ===== Node =====
node_modules/
# ===== Python 虚拟环境 =====
.venv/
venv/
env/
# ===== infra 敏感文件 =====
infra/**/*.key
infra/**/*.pem
infra/**/*.secret
# ===== IDE =====
.idea/
.vscode/
# ===== 分发/构建产物 =====
dist/
build/
*.egg-info/