-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
65 lines (51 loc) · 1.49 KB
/
Copy path.gitignore
File metadata and controls
65 lines (51 loc) · 1.49 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
node_modules/
.next/
out/
build/
dist/
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.DS_Store
*.pem
# scripts/lib/write-generated-key.mjs が書き出す使い捨て秘密鍵 (mode 0600)。
# env へ移したら削除する想定だが、消し忘れても commit されないようにする。
*-key.*.txt
.vercel
*.tsbuildinfo
next-env.d.ts
# Playwright
playwright-report/
test-results/
playwright/.cache/
# デモ収録のスクラッチ出力 (raw webm 等)。最終アセットは public/demo に手で配置する。
demo-artifacts/
# Lighthouse CI
.lighthouseci/
# vitest coverage report
coverage/
.env*.local
.env.local.*
# Claude Code (worktrees, local settings)
.claude/
# Codex / local MCP tooling config (dev-only, not part of the app)
.codex/
# Agent skills installed via `npx skills add` (dev-only, per-developer; not part of the app).
# .claude/ (above) already ignores the Claude Code symlinks that point here.
.agents/
skills-lock.json
# Foundry (Solidity contracts under contracts/) — build artifacts + git-submodule deps.
# NOTE: root lib/ is tracked TypeScript; only contracts/lib/ (forge deps) is ignored.
contracts/out/
contracts/cache/
contracts/lib/
# forge script の broadcast 記録 (deploy tx ログ。機密値は contracts/cache/ 側で ignore 済)。
broadcast/
.env*
# 実装計画・調査メモ (CLAUDE.md「参照」で ignore 対象と規定済み。ローカル限定・公開しない)。
plans/