返回 DeepSeek-Reasonix
.gitignore
根目录 / .gitignore
1 # Build artifacts
2 /bin/
3 /dist/
4 /stage/
5 /npm/.stage/
6 /reasonix
7 /reasonix.exe
8 /e2ebench
9 /e2ebench.exe
10
11 # Website (Astro) build output
12 /site/dist/
13 /site/.astro/
14 /site/_preview.png
15
16 # Go test/build scratch
17 *.test
18 *.out
19 *.coverprofile
20 coverage.out
21 cpu.prof
22 mem.prof
23
24 # Desktop build artifacts
25 /desktop/build/*
26 !/desktop/build/appicon.png
27 !/desktop/build/appicon.svg
28 /desktop/desktop
29 /desktop/frontend/dist/*
30 !/desktop/frontend/dist/.gitkeep
31 /desktop/frontend/.reasonix-frontend-artifact.json
32 /desktop/frontend/sourcemaps/
33 /desktop/electron/dist/
34
35 # Environment / local config (reasonix.example.toml is the shared template)
36 .env
37 .env.local
38 *.local
39 **/.firebase-crash-migration-state.json
40 **/.firebase-crash-migration-state.json.tmp-*
41 /reasonix.toml
42 /desktop/.env
43 /desktop/reasonix.toml
44
45 # Node / frontend dependencies and caches
46 node_modules/
47 .pnpm-store/
48 .npm/
49
50 # Project-local Reasonix state; keep the checked-in review command.
51 /.reasonix/*
52 !/.reasonix/commands/
53 !/.reasonix/commands/review.md
54
55 # Stray Reasonix state written under a package dir by a test whose RealPath
56 # resolves to CWD (e.g. remote bootstrap EnsureServe). Never commit these.
57 internal/**/.reasonix/
58 desktop/**/.reasonix/
59
60 # CodeGraph per-project index (rebuilt locally; never committed)
61 .codegraph/
62
63 # Editor / OS
64 .DS_Store
65 Thumbs.db
66 .idea/
67 .vscode/
68 /site/public/av/
69
70 benchmarks/context-maintenance-e2e/run/
71
72 # Local scratch
73 temp/
74
75 # Official theme art intermediate outputs / caches
76 scripts/official-theme-art/out/
77 scripts/official-theme-art/__pycache__/
78 site/.generated/
79
80 # Committed pointer at REASONIX.md; overrides a global CLAUDE.md ignore rule.
81 !/CLAUDE.md
82 desktop/desktop.exe
83
83 lines Plain Text