-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
72 lines (64 loc) · 1.49 KB
/
Copy path.gitignore
File metadata and controls
72 lines (64 loc) · 1.49 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
# Python Backend Specific .gitignore
# ------------------------------------------------------------------
# GENERAL IGNORES
# ------------------------------------------------------------------
# macOS system files
.DS_Store
# macOS localized files
.localized
# pytest cache directory
.pytest_cache/
# Vim swap files
*.swp
# Backup files
*.bak
# Log files
*.log
logs.txt
exogen_backend.db
.coverage
coverage.xml
*.xlsx
*.csv
.claude/settings.*.json
.worktrees/
# Build artifacts and distribution directories
# PyInstaller output (e.g., dist/app.exe or dist/app)
dist/
# PyInstaller build cache
build/
*.spec
# ------------------------------------------------------------------
# PYTHON SPECIFIC IGNORES
# ------------------------------------------------------------------
# Virtual environment
.venv/
venv/
# Byte-code files
__pycache__/
*.pyc
.Python
env/
pip-log.txt
pip-delete-this-directory.txt
# Runtime downloaded models
static/generated_images
# Caches
.cache/
.ruff_cache/
.pyright_cache/
.pytest_cache/
# ------------------------------------------------------------------
# ENVIRONMENTS / SECRETS
# ------------------------------------------------------------------
# Environment variables (e.g., API keys, device settings)
.env
# ------------------------------------------------------------------
# SEMANTIC RELEASE
# ------------------------------------------------------------------
# Node.js dependencies for semantic-release
node_modules/
# NPM lock file
package-lock.json
# Temporary version file
.VERSION