-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (42 loc) · 1004 Bytes
/
Copy path.gitignore
File metadata and controls
50 lines (42 loc) · 1004 Bytes
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
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.pytest_cache/
.coverage
.coverage.*
htmlcov/
# venv
.venv/
venv/
env/
# editors
.vscode/
.idea/
# build artifacts
build/
dist/
site/
# OS
.DS_Store
Thumbs.db
# hmm-core outputs (anchored at repo root — don't catch frontend/src/components/results/)
/results/
*.pkl
!examples/**/*.pkl
.gitnexus
# Frontend build artifacts (Vite output is gitignored locally too by the
# frontend's own .gitignore; this catches them at the repo root too).
src/hmm_studio/frontend/node_modules/
src/hmm_studio/frontend/dist/
# Frontend build copied into the server package (built artifact, regenerated)
src/hmm_studio/server/static/index.html
src/hmm_studio/server/static/assets/
# Private datasets — referenced via env vars from notebooks / regression
# tests, must NEVER end up in commits. Add new patterns here whenever a
# private CSV/parquet is wired into a notebook (env-var path pattern).
*JDD_ETH*.csv
*JDD_BTC*.csv
**/private_data/
notebooks/data/