-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
104 lines (89 loc) · 1.92 KB
/
.gitignore
File metadata and controls
104 lines (89 loc) · 1.92 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# ================================
# OS / Editor
# ================================
.DS_Store
__MACOSX/
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
# ================================
# Environment files
# ================================
.env
.env.*
!.env.example
!.env.*.example
# ================================
# Cursor / AI
# ================================
.cursorrules
.claude/
.claude
# ================================
# Temp / Logs
# ================================
.tmp/
tmp/
*.log
# ================================
# Go build artifacts
# ================================
/bin/
dist/
coverage/
*.exe
*.dll
*.so
*.dylib
*.a
*.o
*.out
*.test
# Root-level built binary only
/small
/small.exe
/small.dSYM/
# ================================
# Node / Web (if present)
# ================================
node_modules/
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
.vite/
.next/
.vercel/
dist/
# ================================
# SMALL runtime artifacts
# ================================
# Root workspace canonical artifacts are committed, so do NOT ignore /.small/ entirely.
.small-cache/
.small/runs/
# Always ignore runtime run snapshots at repo root
.small-runs/
# Ignore all archives by default (curation only)
.small/archive/*
# Allowlist curated archives (add more ids as needed)
!.small/archive/d554777579ce31fefc6297f2e63e977f05f1bde425d7bba4f79203b5b78a7ba3/
!.small/archive/d554777579ce31fefc6297f2e63e977f05f1bde425d7bba4f79203b5b78a7ba3/**
!.small/archive/dc18c2d9b97d8a01caa7d3b01d1dd48315cecc6c28d11153294d1f23b5a835b1/
!.small/archive/dc18c2d9b97d8a01caa7d3b01d1dd48315cecc6c28d11153294d1f23b5a835b1/**
# Examples are fixtures, not runtime noise
!/examples/**/.small/
!/examples/**/.small/**
examples/**/.small-cache/
examples/**/.small/runs/
examples/**/.small/archive/
examples/**/.small-runs/
# JCN universal secrets policy
.env
.env.*
!.env.example
!.env.sample
!.env.template
!.env.*.example
!.env.*.sample
!.env.*.template