-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (65 loc) · 1004 Bytes
/
Copy path.gitignore
File metadata and controls
83 lines (65 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Environment & Secrets
.env
credentials/
*.json.key
*.pem
supabase/.temp/
.temp/
# Node
node_modules/
# Python
__pycache__/
*.py[cod]
*$py.class
*.pyc
.venv/
venv/
env/
.Python
dist/
build/
*.egg-info/
.eggs/
# Jupyter
.ipynb_checkpoints/
# OS
.DS_Store
Thumbs.db
desktop.ini
# IDE
.vscode/
.idea/
*.swp
*.swo
# Logs
*.log
logs/
# n8n local instance data
n8n-data/
# Test artifacts
data/output/
# Docker
docker-compose.override.yml
# Development archive (local history — not committed)
.archive/
# SQLite databases (n8n local instance data)
*.sqlite
*.sqlite3
# Workflow scratch files (used by migration scripts)
wf.json
live_wf.json
# n8n execution dumps
*execution*.json
error.json
unflattened.json
# Docker inspection output
n8n-inspect.json
# Workflow exports in root (canonical lives in n8n/v2/workflows/)
/export.json
/workflow_export.json
# Test lead fixtures in root (canonical lives in data/)
/lead.json
/lead_obj*.json
/test_wf.json
# Temporary code scratch files
/temp.js