44 lines
407 B
Plaintext
44 lines
407 B
Plaintext
# ===== Python =====
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.venv/
|
|
venv/
|
|
*.egg
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# ===== Node / Next.js =====
|
|
node_modules/
|
|
.next/
|
|
out/
|
|
|
|
# ===== IDE =====
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# ===== OS =====
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ===== Logs =====
|
|
*.log
|
|
logs/
|
|
nohup.out
|
|
|
|
# ===== Claude =====
|
|
.claude/
|
|
|
|
# ===== Test =====
|
|
.pytest_cache/
|
|
coverage/
|
|
htmlcov/
|
|
output
|