-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
93 lines (73 loc) · 2.14 KB
/
Copy path.gitignore
File metadata and controls
93 lines (73 loc) · 2.14 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
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
# Per-paper runtime state — never committed
/*/
# The paper library (papers/<status>/<slug>/) — same rule as the flat layout
/papers/
# Server runtime state at the service root
.views.json
.remote-slot.json
# But keep the package source
!src/
!src/**
# ...and the docs
!docs/
!docs/**
# ...and the CI workflows (the whitelist above hid them, so `git add -A`
# silently skipped .github/ and the pipeline never reached GitHub)
!.github/
!.github/**
# ...and the app icon source (build.sh converts the png to .icns)
!assets/
!assets/**
assets/app_icon.icns
assets/app_icon.iconset/
# ...and the Claude Code skills (install-skills.sh source of truth)
!skills/
!skills/**
# ...and the test suite
!tests/
!tests/**
# ...and the packaging scripts (PyInstaller spec / build.sh / entry)
!packaging/
!packaging/**
# ...and the Vercel remote app (mobile continuation)
!remote/
!remote/**
remote/node_modules/
remote/.vercel/
# Standard Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.venv/
.uv/
uv.lock
# macOS
.DS_Store
# IDE
.vscode/
.idea/
# Logs
*.log
# Personal writing samples (used by paper-publish for voice matching).
# Excluded from the public repo — drop your own samples here locally.
src/paper_review/publish/voice_samples/*.md
!src/paper_review/publish/voice_samples/.gitkeep
# Character illustrations based on third-party IP — local use only, never
# published. Globs cover variants (agumon-2.jpg, venom-2.jpg …), and
# packaging/paper-review.spec keeps the same list out of the app bundle.
# Original/generic animals stay tracked.
src/paper_review/server/static/characters/calcifer*.jpg
src/paper_review/server/static/characters/soot*.jpg
src/paper_review/server/static/characters/squirtle*.jpg
src/paper_review/server/static/characters/venom*.jpg
src/paper_review/server/static/characters/agumon*.jpg
src/paper_review/server/static/characters/shinchan*.jpg
# dev scratch (plans, review memos, temp analysis)
dev/
# illustration soft-delete trash (runtime)
src/paper_review/server/static/characters/_trash/
remote/.env.local
# Personal illustration grouping (points at the local-only characters)
src/paper_review/server/illustration_groups.local.json