-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (89 loc) · 2.61 KB
/
Copy path.gitignore
File metadata and controls
107 lines (89 loc) · 2.61 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
# Dependencies
node_modules/
**/node_modules/
frontend/studyhub-app/dist/
# Private marketing kit (scripts, bios, Fiverr brief, brand assets) — never committed
marketing-kit/
# Environment files
.env
.env.*
**/.env
**/.env.*
!**/.env.example
!**/.env.sample
# Local uploads and smoke artifacts
backend/uploads/
.tmp-email-capture/
tmp-uploads-smoke/
backend-smoke.out.log
backend-smoke.err.log
beta-diagnostics/
beta-artifacts/
*.enc.txt
# Generated screenshots and gallery (regenerated on demand)
tests/screenshots/
frontend/studyhub-app/tests/screenshots/
# Playwright test output — regenerated on every run, never useful in git
test-results/
**/test-results/
playwright-report/
**/playwright-report/
# Coverage reports
coverage/
**/coverage/
.nyc_output/
# Android build artifacts (Capacitor). The `android/` source tree is
# tracked, but `/build` subtrees inside it are regenerated by Gradle.
frontend/studyhub-app/android/.gradle/
frontend/studyhub-app/android/build/
frontend/studyhub-app/android/app/build/
frontend/studyhub-app/android/capacitor-cordova-android-plugins/build/
frontend/studyhub-app/android/**/local.properties
# iOS build artifacts (if/when iOS target is added)
frontend/studyhub-app/ios/App/build/
frontend/studyhub-app/ios/App/Pods/
# Vite dev cache
**/.vite/
**/.vite-cache/
# OS cruft
.DS_Store
**/.DS_Store
Thumbs.db
desktop.ini
# Editor backups and swap files
*.swp
*.swo
*~
# Linux/fuse editor artifacts — left behind by some editors on OneDrive-
# backed filesystems. Harmless but clutter the working tree.
.fuse_hidden*
**/.fuse_hidden*
# Debug logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Claude Code local settings
.claude/settings.local.json
.claude/worktrees/
.claude/scheduled_tasks.lock
.cursor/
.~lock.*#
# Local brainstorming/runtime state
.superpowers/**/state/
.superpowers/brainstorm/
# Nested repos / experiments
mission-control/
# Internal planning, strategy, security, and release-log documents.
# These are private working docs for the StudyHub core team and must
# not be exposed in the public repository — including if/when StudyHub
# is open-sourced in the future. Individual files can be reviewed,
# redacted, and promoted back to docs/ on a case-by-case basis.
docs/internal/
# Vendored `effect-ts` source that was accidentally committed into the
# repo root (2,715 files, ~33 MB). Nothing in backend/src or
# frontend/studyhub-app/src imports from `package/`; the `effect`
# dependency in backend/package.json resolves through node_modules, not
# this tree. Keeping the directory on disk (in case anyone still needs
# it for reference) but excluding from git.
/package/