-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
67 lines (51 loc) · 999 Bytes
/
.gitignore
File metadata and controls
67 lines (51 loc) · 999 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
# Generated files
/target/
**/*.rs.bk
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Test artifacts
*.log
*.tmp
# Local config
.env
.env.local
# Downloaded binaries
.bin/
# Node.js
node_modules/
package-lock.json
.papi/
# Python
__pycache__
# Single source of truth lives in shared/papi/.papi/. Track its config +
# metadata so CI can build without a running chain; descriptor dist/ is
# regenerated, never tracked.
!user-interfaces/shared/papi/.papi/
user-interfaces/shared/papi/.papi/descriptors/dist/
.vite/
*.tsbuildinfo
# Generated chain specs
zombienet/storage-local-spec.json
# Build output
**/dist/
# Playwright artefacts
user-interfaces/**/playwright-report/
user-interfaces/**/test-results/
# Local Claude state (per-developer)
.claude/scheduled_tasks.lock
.claude/settings.local.json
# Lockfiles are per-project, not committed
# (each UI project has its own package manager)
# Binary/generated docs
*.docx
# Screenshots
Screenshot.png
# Python
__pycache__