-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (72 loc) · 2.64 KB
/
.gitignore
File metadata and controls
83 lines (72 loc) · 2.64 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
# ──────────────────────────────────────────────────────────────
# .gitignore — Sleeping Alarm System
# Keeps personal data, system info, and build artifacts out
# of the repository so it is safe to share publicly.
# ──────────────────────────────────────────────────────────────
# ── Python compiled / cache ──────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
# ── Virtual environments ─────────────────────────────────────
.venv/
venv/
env/
ENV/
.env
.env.*
*.env
# ── Distribution / packaging ─────────────────────────────────
dist/
build/
*.egg-info/
*.egg
.eggs/
pip-wheel-metadata/
# ── Test artefacts ───────────────────────────────────────────
.pytest_cache/
.coverage
coverage.xml
htmlcov/
*.lcov
# ── IDE / editor files ───────────────────────────────────────
.vscode/
.idea/
*.iml
*.suo
*.user
*.sublime-project
*.sublime-workspace
.DS_Store
Thumbs.db
desktop.ini
# ── Secrets & credentials (safety net) ──────────────────────
*.pem
*.key
*.p12
*.pfx
secrets.json
credentials.json
token.json
.secrets/
# ── Project-specific: generated data (do NOT commit) ────────
snapshots/ # auto-generated sleep screenshots — can contain face images
logs/ # session logs — no personal info but kept local by default
*.jsonl # log files
# ── Large test media (add your own; do not commit binary blobs) ──
test.mp4 # 11 MB sample — too large for Git; use Git LFS or local only
*.mp4
*.avi
*.mkv
*.mov
# ── Jupyter notebooks checkpoints ───────────────────────────
.ipynb_checkpoints/
# ── mypy / type checkers ─────────────────────────────────────
.mypy_cache/
.dmypy.json
dmypy.json
# ── OS-specific ──────────────────────────────────────────────
*.swp
*.swo
*~