Files
n8n-workflows/.gitignore
enrico 25cfefe303 Updated .gitignore to include additional Python, IDE, OS, and application-specific artifacts for better project cleanliness.
- Added a startup event in `api_server.py` to verify database connectivity and provide warnings if no workflows are found.
- Implemented new API endpoints for fetching service categories and searching workflows by category, improving the API's usability and functionality.
- Removed deprecated scripts and files to streamline the codebase and focus on the new FastAPI system.
2025-06-22 01:01:58 +02:00

83 lines
846 B
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
# Virtual environments
.env
.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/
# Database files (SQLite)
*.db
*.sqlite
*.sqlite3
# Rename logs
workflow_rename_log.json
# Node.js artifacts (if using npm)
node_modules/
package-lock.json