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