acarey5 commited on
Commit
943f426
Β·
1 Parent(s): fa6caa6

chore: add .gitignore and stop tracking .env

Browse files
Files changed (1) hide show
  1. .gitignore +69 -0
.gitignore ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ── Secrets ───────────────────────────────────────────────
2
+ .env
3
+ .env.*
4
+ !.env.example
5
+
6
+ # ── Python ────────────────────────────────────────────────
7
+ __pycache__/
8
+ *.py[cod]
9
+ *.pyo
10
+ *.pyd
11
+ *.so
12
+ *.egg
13
+ *.egg-info/
14
+ dist/
15
+ build/
16
+ .eggs/
17
+ *.whl
18
+
19
+ # ── Virtual environments ───────────────────────────────────
20
+ .venv/
21
+ venv/
22
+ env/
23
+ ENV/
24
+
25
+ # ── Jupyter / IPython ─────────────────────────────────────
26
+ .ipynb_checkpoints/
27
+ *.ipynb
28
+
29
+ # ── Playwright ────────────────────────────────────────────
30
+ playwright/.auth/
31
+ test-results/
32
+ playwright-report/
33
+
34
+ # ── Gradio / HuggingFace ──────────────────────────────────
35
+ gradio_cached_examples/
36
+ flagged/
37
+ *.flagged/
38
+ .cache/
39
+ huggingface_cache/
40
+
41
+ # ── Test / coverage ───────────────────────────────────────
42
+ .pytest_cache/
43
+ .coverage
44
+ htmlcov/
45
+ coverage.xml
46
+ *.cover
47
+
48
+ # ── Type checking ─────────────────────────────────────────
49
+ .mypy_cache/
50
+ .pyright/
51
+ .ruff_cache/
52
+
53
+ # ── VS Code ───────────────────────────────────────────────
54
+ .vscode/
55
+ *.code-workspace
56
+
57
+ # ── macOS ─────────────────────────────────────────────────
58
+ .DS_Store
59
+ __MACOSX/
60
+
61
+ # ── Windows ───────────────────────────────────────────────
62
+ Thumbs.db
63
+ desktop.ini
64
+ $RECYCLE.BIN/
65
+
66
+ # ── Logs / temp ───────────────────────────────────────────
67
+ *.log
68
+ *.tmp
69
+ *.bak