添加 Nezha Agent 管理功能和完整文档系统

- 新增 Nezha Agent client_secret 更新 playbook(两种实现方案)
- 建立三层文档架构:docs/(用户文档)、examples/(配置示例)、llmdoc/(技术文档)
- 添加项目主 README.md 和配置示例文件
- 初始化 .gitignore 保护敏感信息
This commit is contained in:
Wang Defa
2025-12-16 10:52:38 +08:00
parent f08326fec3
commit 167fad20eb
32 changed files with 2090 additions and 0 deletions

53
.gitignore vendored Normal file
View File

@@ -0,0 +1,53 @@
# Ansible
*.retry
.vault_pass
.vault_pass.txt
# Inventory files (keep only examples)
inventory.ini
hosts.ini
hosts
# Variable files with secrets (keep only examples)
*_vars.yml
!*.example.yml
vars.yml
secrets.yml
# Backup files
*.backup
*.backup.*
*~
# Ansible Galaxy
.galaxy_install_info
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Logs
*.log
# Temporary files
tmp/
temp/
.tmp/
# Environment
.env
.env.local