forked from jflournoy/for-funsies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
32 lines (27 loc) · 639 Bytes
/
Copy path.gitignore
File metadata and controls
32 lines (27 loc) · 639 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
# Node / TypeScript
node_modules/
dist/
build/
*.tsbuildinfo
.npm
npm-debug.log*
# Never commit these. CI installs with `npm ci --ignore-scripts`.
.env
.env.*
!.env.example
# Editor / OS
.DS_Store
.history/
*.swp
# Agent config (.claude/, .codex/, .vscode/mcp.json) is tracked on purpose:
# the paths in it are container-internal, so a volume clone reproduces it.
# Only genuinely local scratch state is ignored here.
.claude/settings.local.json
*.vexp-bak
# Resolved by the devcontainer CLI at build time; not pinned on purpose
.devcontainer/devcontainer-lock.json
# Python (tooling in scripts/ only)
__pycache__/
*.pyc
.venv/
venv/