-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
30 lines (24 loc) · 1.44 KB
/
.gitignore
File metadata and controls
30 lines (24 loc) · 1.44 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
# ── Secrets – NEVER commit these ─────────────────────────────────────────────
.env
.env.local
.env.*.local
# ── Dependencies ──────────────────────────────────────────────────────────────
node_modules/
# ── Runtime / uploads ─────────────────────────────────────────────────────────
# Temporary audio files processed by the backend
uploads/
# SQLite database (persisted via Hyperlift volume at /data in production)
*.db
*.db-shm
*.db-wal
/data/
# ── Frontend build output ─────────────────────────────────────────────────────
dist/
# ── Logs ─────────────────────────────────────────────────────────────────────
*.log
npm-debug.log*
# ── OS / editor noise ─────────────────────────────────────────────────────────
.DS_Store
Thumbs.db
.vscode/
.idea/