- 更新 authz-service 描述,明确已包含 Dockerfile、启动脚本和空白种子数据 - 在目录结构图中添加 Dockerfile 文件路径 - 在文档末尾添加 authz-service 的 README 路径到文档列表 - 从后续建议列表中移除已完成的 Dockerfile 和启动脚本相关条目 - 将 authz-service 的部署脚本更新为控制面接入和部署编排
61 lines
547 B
Plaintext
61 lines
547 B
Plaintext
# OS / editor
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Local env
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyd
|
|
.python-version
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.pyre/
|
|
.hypothesis/
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.eggs/
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
site/
|
|
|
|
# Node / Next.js
|
|
node_modules/
|
|
.pnpm-store/
|
|
.pnp
|
|
.pnp.js
|
|
.next/
|
|
.next-dev/
|
|
out/
|
|
coverage/
|
|
*.tsbuildinfo
|
|
.turbo/
|
|
.vercel/
|
|
.eslintcache
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Misc
|
|
.cache/
|
|
*.log
|