mirror of
https://github.com/Zie619/n8n-workflows.git
synced 2025-11-25 03:15:25 +08:00
Major cleanup and fixes: ✅ Fixed GitHub Actions Issues: - Updated CodeQL action from v2 to v3 (fixes deprecation warning) - Fixed Trivy config parameter (config -> trivy-config) - Fixed security scan permissions issues 🧹 Repository Cleanup: - Moved 80+ old files to archive/ directory - Removed redundant "workflows copy" directory - Removed old Documentation/ folder - Organized old reports, scripts, and docs into archive/ - Reduced root directory from 103 to 23 essential files 📁 New Structure: - archive/reports/ - Old JSON and MD reports - archive/scripts/ - Old Python scripts - archive/docs/ - Old documentation - archive/backups/ - Old workflow backups - Added archive/ to .gitignore The repository is now much cleaner and easier to navigate! 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
111 lines
1.2 KiB
Plaintext
111 lines
1.2 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
|
|
# Virtual environments
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Application specific
|
|
database/workflows.db
|
|
database/workflows.db-*
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Development artifacts
|
|
*.log
|
|
*.tmp
|
|
temp/
|
|
tmp/
|
|
.cache/
|
|
|
|
# Documentation artifacts (generated)
|
|
workflow-documentation.html
|
|
|
|
# Test files
|
|
test_*.json
|
|
*_test.json
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Workflow backup directories (created during renaming)
|
|
workflow_backups/
|
|
workflows_backup*/
|
|
workflows_backup_*/
|
|
|
|
# Database files (SQLite)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Rename logs
|
|
workflow_rename_log.json
|
|
|
|
# Node.js artifacts (if using npm)
|
|
node_modules/
|
|
package-lock.json
|
|
|
|
#db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# versions
|
|
.python-version
|
|
|
|
# Claude Code local settings (created during development)
|
|
.claude/settings.local.json
|
|
|
|
# E3D development directory
|
|
.e3d/
|
|
|
|
# Playwright MCP test files
|
|
.playwright-mcp/
|
|
|
|
# Import logs
|
|
import_log.json
|
|
# Archive folder for old files
|
|
archive/
|