-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
151 lines (137 loc) · 4.02 KB
/
Copy path.gitignore
File metadata and controls
151 lines (137 loc) · 4.02 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# ---------------------------------------------------------------------------
# Aevistle — .gitignore
# Rule of thumb: if it holds a credential, a build artifact, or a machine path,
# it does not belong in git.
# ---------------------------------------------------------------------------
# --- secrets & personal data (NEVER commit) --------------------------------
.env
.env.*
!.env.example
*.pem
*.key
*.p12
*.pfx
*.jks
*.keystore
keystore.properties
# Signing-key material never lives in the repository — it is kept in
# ~/.aevistle, which git cannot reach. These patterns are the second line:
# a key copied in here by hand, or a stray export from a debugging session,
# must not become a commit.
gpg.properties
*.asc
aevistle-signing-key*
secrets.json
credentials.json
local.properties
android/keystore*
android/**/keystore*
**/aevistle-release-key*
**/*.private.*
user-data/
userdata/
*.sqlite
*.sqlite3
*.db
# runtime state written by the app (contains recipients, drafts, logs)
data/
logs/
*.log
!docs/**/*.log
# --- dependencies ----------------------------------------------------------
node_modules/
.pnp
.pnp.js
.yarn/
# --- build output ----------------------------------------------------------
dist/
dist-electron/
dist-ssr/
release/
out/
*.local
# NOTE: `build/` is deliberately NOT ignored. It holds the app icons that
# electron-builder needs, and git cannot re-include a file whose parent
# directory is excluded — ignoring it would make a fresh clone fail to package.
# Gradle's build directories are covered by the Android section below.
# --- Android / Gradle ------------------------------------------------------
android/.gradle/
android/build/
android/app/build/
android/captures/
android/.idea/
android/local.properties
android/app/release/
android/app/debug/
*.apk
*.aab
*.dex
.gradle/
gradle-app.setting
!gradle-wrapper.jar
# --- Electron packaging ----------------------------------------------------
*.exe
*.msi
*.nsis
*.blockmap
!docs/assets/*.png
# --- editors & OS ----------------------------------------------------------
.vscode/*
!.vscode/extensions.json
!.vscode/settings.recommended.json
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
.DS_Store
Thumbs.db
desktop.ini
# --- AI workspace bookkeeping (local only) ---------------------------------
task-progress.md
# Finished ledgers are archived beside the live one as
# `task-progress.<date>-<slug>.md`. They are working notes, not project
# history — the pattern matters because the bare name above does not match them
# and one nearly went into a public repository.
task-progress.*.md
.claude/
hs_err_pid*.log
replay_pid*.log
# --- machine-local tooling -------------------------------------------------
# .npmrc here pins a regional registry mirror. That is a per-machine choice,
# not a project one — committing it would route every contributor through it.
.npmrc
__pycache__/
*.py[cod]
# --- browser regression suite ----------------------------------------------
# `tests/` carries its own dependency island so the root lockfile stays still;
# `node_modules/` above already covers `tests/node_modules` at any depth. What
# it does not cover is what a run leaves behind — traces and screenshots of a
# seeded mailbox are still a mailbox, and a retained trace is a full DOM
# recording of the app with the fixture's addresses in it.
test-results/
playwright-report/
blob-report/
.playwright/
# Ad-hoc layout measurement, and the screenshots it takes. Named for the
# session that produced them and never part of the project — and the same
# reasoning as the retained traces above applies to a bare .png: a screenshot
# of the compose screen is a screenshot of whatever mailbox was loaded when it
# was taken. Both patterns were staged by a `git add -A` before this existed.
measure-tmp.mjs
**/measure-tmp.mjs
tests/shot-*.png
# --- misc ------------------------------------------------------------------
coverage/
.nyc_output/
*.tsbuildinfo
.eslintcache
.npm/
.cache/
tmp/
temp/
.playwright-mcp/
# Stray copy of the electron bundle; the real one is dist-electron/main.cjs
/main.cjs
/preload.cjs