FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sim/.gitignore at main · simstudioai/sim · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
simstudioai
/
sim
Public
Notifications
You must be signed in to change notification settings
Fork
3.8k
Star
29.5k
Code
Issues
119
Pull requests
177
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
sim
/
.gitignore
Copy path
More file actions
More file actions
Latest commit
History
History
History
112 lines (87 loc) · 1.88 KB
Breadcrumbs
sim
/
.gitignore
Copy path
File metadata and controls
112 lines (87 loc) · 1.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#
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
*
.sw
?
#
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
#
# 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
Back
|
FazBrowse Home
|
New Git URL