-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy path.gitignore
More file actions
115 lines (90 loc) · 1.91 KB
/
Copy path.gitignore
File metadata and controls
115 lines (90 loc) · 1.91 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
105
106
107
108
109
110
111
112
113
114
115
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/apps/**/node_modules
/packages/**/node_modules
/scripts/node_modules
# bun specific
bun-debug.log*
# cursor debug logs
.cursor/debug-*.log
# this repo uses bun.lock; package-lock.json files are accidental
package-lock.json
# testing
/coverage
/apps/**/coverage
# next.js
/.next/
/apps/**/out/
/apps/**/.next/
/apps/**/build
# apps/desktop/build holds electron-builder INPUTS (icon, entitlements), not outputs
!/apps/desktop/build
# production
/build
/dist
**/dist/
**/standalone/
sim-standalone.tar.gz
# redis
dump.rdb
# misc
.DS_Store
*.pem
# env files
.env
*.env
.env.local
.env.development
.env.test
.env.production
# editor swap files
*.swp
*.swo
*.swn
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts
# cursorrules
# .cursorrules
# docs
/apps/docs/.source
/apps/docs/.contentlayer
/apps/docs/.content-collections
# database instantiation
**/postgres_data/
# collector configuration
collector-config.yaml
docker-compose.collector.yml
start-collector.sh
# Turborepo
.turbo
# VSCode
.vscode
# IntelliJ
.idea
## Helm Chart Tests
helm/sim/test
i18n.cache
## Claude Code
.claude/launch.json
.claude/worktrees/
.claude/scheduled_tasks.lock
.deepsec/
# Personal Cursor Skills
.cursor/skills/ask-sim/
# Python (apps/pii tests/tooling)
__pycache__/
.pytest_cache/
# Local file-upload spill directory. `UPLOAD_DIR_SERVER` is
# `join(process.cwd(), 'uploads')`, so it follows the cwd rather than a fixed
# root: under `turbo run test` the cwd is apps/sim and `apps/sim/.gitignore`'s
# `/uploads` catches it, but running vitest from the repo root drops ~40
# `uploads/execution/**/large-value-*.json` files here instead.
#
# Anchored deliberately. An unanchored `uploads/` would also match
# `apps/sim/lib/uploads/` — 61 files of tracked source — and silently ignore
# anything added there later.
/uploads