2f830424a4
Merge install/upgrade into nexus-1panel.sh with 1c4g/2c8g/4c16g resource profiles; preflight Gitea and firewall hints; post-install HTTPS health probe. Co-authored-by: Cursor <cursoragent@cursor.com>
86 lines
1.3 KiB
Plaintext
86 lines
1.3 KiB
Plaintext
# Nexus — Python
|
||
__pycache__/
|
||
*.py[cod]
|
||
*$py.class
|
||
*.egg-info/
|
||
build/
|
||
.eggs/
|
||
|
||
# Environment (NEVER commit — contains production credentials)
|
||
.env
|
||
.install_locked
|
||
.install_state.json
|
||
SECRETS.md
|
||
deploy/nexus-1panel.secrets.sh
|
||
*.pem
|
||
.env.*
|
||
.venv/
|
||
venv/
|
||
ENV/
|
||
|
||
# Agent memory (local MCP persistence, do not commit)
|
||
.claude/mcp-memory.jsonl
|
||
|
||
# MCP tool data (local development artifacts)
|
||
.megamemory/
|
||
.playwright-mcp/
|
||
frontend/test-results/
|
||
tmp/
|
||
|
||
# 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
|
||
|
||
# Build output (Vite/Vuetify frontend)
|
||
# SPA 构建产物纳入 Git,便于服务器 git pull 部署(见 deploy/deploy-frontend.sh)
|
||
# 仍忽略本地临时文件
|
||
web/app/assets/.tmp/
|
||
# Legacy dist dir (no longer used)
|
||
**/dist/
|
||
|
||
# Uploads
|
||
web/uploads/
|
||
|
||
# Data (sensitive)
|
||
web/data/config.php
|
||
web/data/*.db
|
||
|
||
# Backups
|
||
backups/
|
||
|
||
# Docker local secrets
|
||
docker/.env
|
||
docker/.env.prod
|
||
!docker/.env.example
|
||
!docker/.env.prod.example
|
||
scripts/npm-proxy.env
|
||
|
||
# Deploy
|
||
deploy/*.key
|
||
|
||
# Backups
|
||
backups/ |