-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
44 lines (37 loc) · 744 Bytes
/
.gitignore
File metadata and controls
44 lines (37 loc) · 744 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
# --- Node.js & Vite ---
node_modules/
dist/
dist-ssr/
*.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# --- Python & uv ---
# Virtual environments (uv creates .venv by default)
.venv/
venv/
ENV/
env/
# Python compiled files
__pycache__/
*.py[cod]
*$py.class
# --- Jupyter Book ---
# Ignore the build artifacts inside the book folder
jupyter-books/_build/
# Ignore Jupyter checkpoints (autosaves)
.ipynb_checkpoints/
*/.ipynb_checkpoints/
# --- Generated Website Content ---
# We ignore this because the build script generates it automatically.
# We don't want to commit the compiled HTML to the main branch.
public/notes/
# --- IDEs & Editors ---
.vscode/
.idea/
*.swp
*.swo
# --- OS Files ---
.DS_Store
Thumbs.db