c72631a293
合并 claude/condescending-ishizaka-3cff3a 分支: - deploy/install.sh: 一键安装脚本(宝塔/标准模式自适应) - deploy/upgrade.sh + uninstall.sh - docs/install-guide.md: 完整中文安装教程 - PHP完全移除: install.php删除, config.php→config.json - crypto.py: 移除PHP AES-CBC兼容, 纯Fernet - install.py: 宝塔Supervisor路径自适应, Fernet密钥生成 - install.html: Step 5宝塔/标准模式条件渲染 - 44个冲突文件使用worktree分支版本(全部最新代码) Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
66 lines
740 B
Plaintext
66 lines
740 B
Plaintext
# Nexus — Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# Environment (NEVER commit — contains production credentials)
|
|
.env
|
|
.install_locked
|
|
.install_state.json
|
|
SECRETS.md
|
|
*.pem
|
|
.env.*
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Agent memory (local MCP persistence, do not commit)
|
|
.claude/mcp-memory.jsonl
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
nexus.log
|
|
|
|
# Node offline cache for WSL install (large tarball)
|
|
.cache/
|
|
|
|
# Test
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.coverage
|
|
coverage.xml
|
|
|
|
# Node (for Tailwind/Alpine.js build)
|
|
node_modules/
|
|
web/css/tailwind-output.css
|
|
|
|
# Uploads
|
|
web/uploads/
|
|
|
|
# Data (sensitive)
|
|
web/data/config.php
|
|
web/data/*.db
|
|
|
|
# Backups
|
|
backups/
|
|
|
|
# Deploy
|
|
deploy/*.key
|
|
|
|
# Backups
|
|
backups/ |